We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
e.g. mytest.js
const lodash = require('lodash') lodash.get({a: {b: 10}}, 'a.b')
Introduce the ability to run baapan command similar to node command in order to run JavaScript.
baapan
node
e.g,
baapan mytest.js
baapan should automatically download any required dependencies and run the script.
require
This is currently possible by .load repl command as follows:
.load
$ baapan Creating workspace... Initializing workspace... Workspace loaded! > .load mytest.js const lodash = require('lodash') lodash.get({a: {b: 10}}, 'a.b') Fetching and installing module 'lodash' from npm... Done! 10 >
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Proposed Feature
e.g. mytest.js
Introduce the ability to run
baapan
command similar tonode
command in order to run JavaScript.e.g,
baapan
should automatically download anyrequire
d dependencies and run the script.Alternative suggestion
This is currently possible by
.load
repl command as follows:The text was updated successfully, but these errors were encountered: