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

sbffi

v1.0.4

Published

Dynamic C function calls from JS, powered by dyncall.

Downloads

37

Readme

sbffi

A super-quick FFI for Node.js.

dyncall is used to make dynamic calls to native functions. In order to avoid some cost of translating JavaScript values into raw C types, a shared buffer is used for both arguments and return values. Writing values to a buffer turns out to be quite a bit faster than unpacking them in native code.

Usage

sbffi.getNativeFunction(pathToSharedLibrary, functionName, returnType, [argType1, argType2, ...])

All the arguments are strings. The types must be standard C types. See the Types section below for details. When functions take 64-bit types, the parameters must be passed as BigInts. 64-bit return values will also be BigInts.

// adder.c: some C library compiled to libadder.so

uint32_t add(uint32_t a, uint32_t b) {
  return a + b;
}
// index.js

const { getNativeFunction } = require('sbffi');

const libPath = '/path/to/libadder.so';
const add = getNativeFunction(libPath, 'add', 'uint32_t', ['uint32_t', 'uint32_t']);

const result = add(23, 34);
// 57

To specify a callback, identify it in the arguments array as [cbReturnType, [cbArgTyp1, cbArgType2, ...]].

Types

The following types are supported:

  • (u)int[8|16|32|64]_t
  • bool
  • (unsigned) char
  • (unsigned) short
  • (unsigned) int
  • (unsigned) long
  • (unsigned) long long
  • float
  • double
  • size_t

128-bit types are not yet supported, and while this list may grow over time, for now other types can be used if they're aliases of the above types.

See the section below about pointers.

Pointers

Pointers are currently assumed to be 64-bit, and can be passed to native functions by specifying the type as pointer or referring to any other type with an asterisk in the string, for example: uint8_t *.

You can put raw data into a Buffer, and then get a pointer to the start of that buffer with:

const bufferPointer = sbffi.getBufferPointer(buffer);

Arrays and strings must be passed as pointers.

Structs

For now, sbfffi doesn't have any built-in support for structs. That being said, there are some helpful libraries like shared-structs and ref-napi (and its family of modules). As long as you can build up a C struct into a Buffer, you can pass pointers to them into C functions. Non-pointer struct arguments or return values are not supported.

Development

Using a non-release version of sbffi requires that cmake is installed in order to compile the native addon.

Benchmarks

A simple benchmark can be run with npm run bench. This will test calling a simple adding function from the test library using the following techniques:

  • ffi-napi: A successor to node-ffi compatible with modern versions of Node.js.
  • sbffi: This library.
  • napi-addon: A very simple/normal Node.js addon using NAPI in C.
  • napi-addon-sb: A NAPI addon using the same shared-buffer technique as sbffi, but with a hard-coded function call, rather than a dynamic/FFI call.
  • wasm: The adding function compiled to WebAssembly.
  • js: Re-implementing the function in plain JavaScript.

Each function will be called 100000 times, in 5 repetitions, timed with console.time(). Here are the results on my machine (2019 Lenovo X1 Extreme, running Ubuntu, Node v12):

ffi-napi: 1103.680ms
sbffi: 39.981ms
napi-addon: 8.214ms
napi-addon-sb: 6.795ms
wasm: 2.802ms
js: 2.644ms
---
ffi-napi: 1128.388ms
sbffi: 97.446ms
napi-addon: 3.631ms
napi-addon-sb: 3.308ms
wasm: 0.918ms
js: 0.045ms
---
ffi-napi: 1419.159ms
sbffi: 29.797ms
napi-addon: 3.946ms
napi-addon-sb: 3.717ms
wasm: 0.871ms
js: 0.090ms
---
ffi-napi: 1285.210ms
sbffi: 73.335ms
napi-addon: 4.618ms
napi-addon-sb: 3.651ms
wasm: 0.930ms
js: 0.096ms
---
ffi-napi: 772.013ms
sbffi: 29.467ms
napi-addon: 3.790ms
napi-addon-sb: 3.352ms
wasm: 0.847ms
js: 0.087ms
---

Of course, YMMV.

Contributing

Please see CONTRIBUTING.md, CODE_OF_CONDUCT.md and TODO.md.

License

Please see LICENSE.txt.