npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

unicode-shaper-zig

v0.5.1

Published

Shape unicode text so that renderers like WebGL and WebGPU can properly display the glyphs.

Downloads

28

Readme

unicode-shaper-zig

A Zig port of a subset of the functionality of International Components for Unicode (ICU). Supports right-to-left langauges like Arabic and Hebrew.

Purpose

This library is intended to be used in the browser, and can be compiled to WebAssembly. Mapbox uses emscripten but as you can see, the bundle size is 186.21KB [44.08KB (gzip)]. Because of it's size, it's imported as a separate module. Due to Zig's first class WASM support the bundle size is 9.762 kB wasm + 3.257 kB JS (example case). This is a 85.7% reduction in size.

Using unicode-shaper

unicode-shaper exposes three functions for modules

shapeArabic(input: []const u16, options: u32, allocator: std.mem.Allocator) ![]const u16

Takes an input string in "logical order" (i.e. characters in the order they are typed, not the order they will be displayed) and replaces Arabic characters with the "presentation form" of the character that represents the appropriate glyph based on the character's location within a word.

processBidiText(input: []const u16) ![]u16

Takes an input string with characters in "logical order", along with a set of chosen line break points, and applies the Unicode Bidirectional Algorithm to the string. Returns a new line in "visual order" (i.e. characters in the order they are displayed, left-to-right).

processText(input: []const u16): ![]const u16

Combines arabicShaping and processBidiText to process a string with both shaping and bidirectional processing. Takes an input string with characters in "logical order", and applies the Unicode Bidirectional Algorithm to the string. Returns a new line with characters in "visual order" (i.e. characters in the order they are displayed, left-to-right) and replaces Arabic characters with the "presentation form" of the character that represents the appropriate glyph based on the character's location within a word.

isRTL(input: u16) bool

Check if the unicode character is right to left.

isCJK(input: u16) bool

Check if the unicode character is Chinese, Japanese, or Korean. Useful if you want to draw text as a vertical line for CJK characters.

Example

    const WASM = require('rtl.ts')
    const wasm = new WASM()
    const text = 'سلام۳۹'
    const output = wasm.processString(input)
    console.log(output)
    // => '۳۹ﻡﻼﺳ'

CPP TESTS: Build

1 Download and build ICU

wget https://github.com/unicode-org/icu/releases/download/release-73-rc/icu4c-73rc-src.tgz
tar xzf icu4c-73rc-src.tgz
rm icu4c-73rc-src.tgz

cd icu/source

./runConfigureICU --help
CXXFLAGS=-std=c++20 ./runConfigureICU MacOSX/GCC --disable-renaming
# OR
CXXFLAGS=-std=c++20 ./runConfigureICU Linux/gcc --disable-renaming

make clean
make -j4
sudo make install

2 Run comparison experiments via test.cpp

g++ -stdlib=libc++ -std=c++20 -w -fPIC -I/usr/local/include -L/usr/local/lib -l icuuc test.cpp -o test