64
64 copied to clipboard
High performance Base64 encoding and decoding for Node.js using SIMD (AVX2, AVX, SSE4.2, SSE4.1, SSSE3) acceleration
I was surprised when I saw the extra string conversion in the benchmark code. I think it may surprise others as well. Though people who care about performance will probably...
Hi @lovell , I worked on this native addon and I ported it to **[N-API](https://nodejs.org/dist/latest-v8.x/docs/api/n-api.html)** You can find my work here: [https://github.com/NickNaso/64/tree/napi](https://github.com/NickNaso/64/tree/napi) If you want experiment with N-API you can...