Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upAre NPM Packages supported? #77
Comments
|
hi @bogacg , We start to add a I will update this issue with the state of node modules support |
|
I get this error too. My code: // Generated by CoffeeScript 2.5.1
var prompt;
prompt = require("prompt");
prompt.start();
prompt.get(["username"], function(error, hasil) {
return console.log(`Username: ${hasil.username}`);
});And the error:
I use this command: nectar ask.js |
|
Most likely all NPM packages that use stdout, stdin or stderr will fail. |
|
@marcus-sa we integrated libuv with node env, so it's just a matter of time now to support NPM packages |
I'm getting error in form:
Chalk is an NPM package and my code is compiled from TS, which generated a line:
const chalk = require("chalk");where the error occurs.Is it even possible to use other NPM packages in NectarJs apps?
NectarJS ver. 0.5.31