nbin icon indicating copy to clipboard operation
nbin copied to clipboard

Fast and robust node.js binary compiler.

Results 16 nbin issues
Sort by recently updated
recently updated
newest added

Not sure how feasible it is, but it would make supporting older arm devices a lot easier if nbin were capable of producing statically linked binaries.

I am trying to use `nbin` for my project. I am following [this example](https://github.com/cdr/nbin/blob/master/example/build.ts). However I am not able to include native module. Here is my code: ``` import {...

According to nodejs/node#19, it seems that its possible to make Node.js more memory efficient by swapping `-O3` to `-Os`. As @bnoordhuis stated: > There is an `--optimize_for_size` flag in newer...

Add a CODEOWNERS file with the main maintainers of nbin so they get automatically pinged for reviewing PRs. CC: @code-asher, @kylecarbs

This should allow Node.js applications to run with lower memory requirements as allocating heap stack is omitted because the code is executed immediately to the Ignition interpreter.