0.1.4 • Published 4 years ago

node-webidl v0.1.4

Weekly downloads
2
License
BSD-3-Clause
Repository
github
Last release
4 years ago

Node WebIDL

NPM Version Build Status NPM Dependencies Maintenance Status

Bindings generator for Node Addons given a WebIDL document.

Installation

$ npm install --global node-webidl

Usage

Generate a Node Addon binding given a C header and annotated Web IDL.

$ webidl-bind [options] [files]

Options

-V, --versionprint the version number
-o, --out-file <path>redirect generated output to a file
-h, --helpprint usage information

Binding to C

Given a C source implementation file, e.g. add.h:

float addition(float x, float y) {
  return x + y;
}

Write a Web IDL interface describing how to interop with Node, e.g. add.webidl:

[Bind="add.h"]
interface Add {
  [Bind="addition"]
  float add(float x, float y);
};

Generate bindings:

$ webidl-bind -o add.c add.webidl

License

BSD-3-Clause License

Copyright © 2020 Chance Snow. All rights reserved.