This content originally appeared on DEV Community and was authored by Muhammad Iqbal
In this article, we will learn how to use ES6 syntax to write your Node Server in few simple steps.
Installing babel as dev dependencies in the project
Babel is a toolchain that is mainly used to convert ECMAScript 2015+
code into a backward-compatible version of JavaScript in current and
older browsers or environments. Here are the main things Babel can do
for you:
Installation with npm
npm install --save-dev @babel/core @babel/node @babel/preset-env
Installation with yarn
yarn add @babel/core @babel/node @babel/preset-env -D
After successful installations of dev-dependencies create a file named .babelrc like this.
and paste the following code in it and save the .babelrc file.
{
"presets": ["@babel/preset-env"]
}
Running the ES6 Code
Now you can run your node.js project with ES6 features by running the following command.
yarn babel-node index.js
or
npx babel-node index.js
That is it for this short article.
I am writing this first time please forgive me for my mistakes. I hope you guys find it informative.
This content originally appeared on DEV Community and was authored by Muhammad Iqbal
Muhammad Iqbal | Sciencx (2021-05-14T21:43:55+00:00) Run Node.js app with ES6 features. Retrieved from https://www.scien.cx/2021/05/14/run-node-js-app-with-es6-features/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.