make-runnable icon indicating copy to clipboard operation
make-runnable copied to clipboard

Call a node.js module's exports directly from the command line, with arguments.

Results 8 make-runnable issues
Sort by recently updated
recently updated
newest added

When i run a JS function via make-runnable, the function does't exit. After successful run, the output shows "--------make-runnable-output--------", and it the execution stops there. The script doesn't exit to...

Is it possible to pass both an object as well as multiple primitives to a function ? Something like, ``` node your_file.js doSomethingWithObject --jsonObj '{"key1": "value1", "key2": "value2"}' --primitive1 abc...

Bumps [flat](https://github.com/hughsk/flat) from 4.1.0 to 5.0.2. Commits e5ffd66 Release 5.0.2 fdb79d5 Update dependencies, refresh lockfile, format with standard. e52185d Test against node 14 in CI. 0189cb1 Avoid arrow function syntax....

dependencies

Bumps [minimatch](https://github.com/isaacs/minimatch) to 5.0.1 and updates ancestor dependency [mocha](https://github.com/mochajs/mocha). These dependencies need to be updated together. Updates `minimatch` from 3.0.4 to 5.0.1 Changelog Sourced from minimatch's changelog. change log 5.1...

dependencies

Hi, I want to test a function that returns an object, but it is only shallow printing the object. ie given the following return object ``` { "customerAccountsRs": { "fullName":...

I'm trying to use make-runnable to insert rows into my database, and I'm using my db config file which uses ES6 imports. How can I get make-runnable to work with...

Would be nice if we could pass function arguments like command line arguments. Given the example in the documentation ``` module.exports = { addTogether: function(x,y){ return x + y },...

Would be awesome to provide a way to do tab completion.