Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@babel/node
Advanced tools
@babel/node is a command-line tool that allows you to use Babel to compile and run JavaScript code on the fly. It is particularly useful for running scripts and applications written in ES6+ syntax without needing to precompile them.
Running ES6+ scripts
This feature allows you to run JavaScript files that use ES6+ syntax directly. The `babel-node` command compiles the code on the fly and executes it.
babel-node script.js
REPL with ES6+ support
You can start a REPL (Read-Eval-Print Loop) with ES6+ support by simply running `babel-node` without any arguments. This allows you to interactively write and test ES6+ code.
babel-node
Using Babel plugins and presets
You can specify Babel plugins and presets to customize the compilation process. For example, using the `@babel/preset-env` preset ensures that your code is transpiled to be compatible with the current environment.
babel-node --presets @babel/preset-env script.js
ts-node is a TypeScript execution environment and REPL for Node.js. It allows you to run TypeScript code directly without precompiling it. Compared to @babel/node, ts-node is specifically designed for TypeScript, whereas @babel/node is for JavaScript with ES6+ syntax.
esm is a fast, production-ready ES module loader for Node.js. It allows you to use ES modules in Node.js without needing to transpile them. While @babel/node focuses on compiling and running ES6+ syntax, esm focuses on providing native support for ES modules.
Sucrase is a super-fast alternative to Babel that focuses on compiling modern JavaScript syntax. It is designed to be faster than Babel by focusing on a smaller set of transformations. While @babel/node provides a comprehensive solution for compiling and running ES6+ code, Sucrase aims for speed and simplicity.
A Babel-powered Node.js CLI
babel-node is a CLI that works exactly the same as the Node.js CLI, with the added benefit of compiling with Babel presets and plugins before running it.
npm install --save-dev @babel/core @babel/node
babel-node [options] [ -e script | script.js ] [arguments]
FAQs
Babel command line
The npm package @babel/node receives a total of 511,429 weekly downloads. As such, @babel/node popularity was classified as popular.
We found that @babel/node demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.