2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
Forum Donate
Learn to code — free 3,000-hour curriculum
JANUARY 23, 2020 / #JAVASCRIPT
How to enable ES6 (and
beyond) syntax with Node and
Express
Jonathan Cunanan
Have you ever tried to write front-end apps using ES6
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 1/20
2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
syntax, but then when you decided to learn back-end Forum Donate
development with
Learn Node.js
to code — freeand Express,
3,000-hour you realized
curriculum
that you can’t use stuff like import from and export de
fault ? If so, you came to the right place! This is step by
step guide on how to con gure your dev and prod
environments, setup scripts, and as a bonus we’ll learn
how to add tests!
Table of Contents / Summary of topics
How does it work?
Prerequisites
Installing express
Setting up scripts
Bonus
TL;DR
How does it work? A high level view of
what we need
To enable a front-end development-like experience while developing
back-end apps, here’s a high level view of the processes happening to
your project.
Code Transpiler from ES6+ to ES5
We need a package that translates ES6 and above syntax to ES5 code.
ES5 code is the JS syntax style that is readable to node.js, such as modu
le.exports or var module = require('module') . Note that in
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 2/20
2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
today’s time, almost 99% of ES6+ syntax can be used in Node.js.
Forum This is
Donate
where the package called babel shines.
Learn to code — free 3,000-hour curriculum
Babel takes a js le, converts the code in it, and outputs into a new le.
Script that removes files
Whenever we change something in our code, we feed it to the
transpiler, and it outputs a fresh copy every-time. That’s why we need
a script that removes les before the fresh transpiled copy enters. And
for that, there’s an existing package called rimraf. Rimraf deletes les.
We’ll demonstrate that later.
Watcher of file changes
When coding in Node.js, automatic restart of our server doesn’t come
out of the box just like when doing a project made on-top of create-
react-app or vue-cli. That’s why we’ll install a package called nodemon,
that executes something whenever we change a le in our code. We
can leverage nodemon to restart our server every-time a le is
changed.
So that’s the high-level view of how it works under the hood. With
that, let’s start on how should we setup or project.
Prerequisites
Before we begin, we need some things setup rst.
1. Make sure you have Node.js and npm installed. I recommend
installing their latest LTS or current stable version. You can
install it via Node.js Source or NVM (Node Version Manager)
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 3/20
2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
2. Basic knowledge of terminal commands. Most of theForum Donate
commands are in the tutorial anyway so you don’t have to
Learn to code — free 3,000-hour curriculum
worry about them.
3. Make sure you have your terminal open and your favorite text
editor installed.
That’s it, we’re good to go!
Installing Express
Using the Express generator, we will create a new project with
generated code, move some les, and convert some code to ES6
syntax. We need to convert it at this early stage because we need a
way to verify if our ES6 code works.
Project Setup
Run this command in your terminal. You can name your-project-nam
e with the name you like. --no-view ag means that we won’t be
using any templating engine such as handlebars, ejs, or pug, for our
skeleton Express app.
npx express-generator your-project-name --no-view
After creating your app, you need to go to your app directory. For
Windows Powershell and Linux terminals, use:
cd your-project-name
Next, open the text editor you like. For me, I just use VSCode so I just
have my terminal and text editor open at the same time. But you can
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 4/20
2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
use any text editor you want. Forum Donate
Installing Learn
Packages and
to code — free Moving
3,000-hour and
curriculum
Deleting Files
After we have the generated project ready, we need to install the
dependencies and move some folders. Run this command to install
Express and other packages.
npm install
While you’re waiting for the dependencies to install, follow these
steps.
create a server/ folder
Put bin/ , app.js , and routes/ inside the server/ folder.
Rename www , found in bin to www.js
Leave public/ folder at your project root.
Your le structure will look like this:
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 5/20
2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
Forum Donate
Learn to code — free 3,000-hour curriculum
Now, because we modi ed the le structure, our start server script
won’t work. But we’ll x it along the way.
This is how our le structure looks like. `public/` folder is at the root, and all the `.js` les
are inside `server/` folder.
Converting to ES6 code
Converting the generated code to ES6 is a little bit tedious, so I’ll just
post the code here and feel free to copy and paste it.
Code for bin/www.js :
Now, because we modi ed the le structure, our start server script
won’t work. Here’s what we’ll do to x it. On your package.json le,
rename start script to server found in a JSON Object called "script
s"
// package.json
{
"name": "your-project-name",
// ....other details
"scripts": {
"server": "node ./server/bin/www"
}
}
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 6/20
2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
Forum Donate
You’ll see that we changed the le path from ./bin/www to ./server/b
in/www becauseLearn to code —
we moved lesfree
to 3,000-hour curriculum
server/ . We’ll use start script later
on.
Try it! Try running the server by typing npm run server on your
terminal, and go to localhost:3000 on your browser.
Converting the top level code to use ES6
imports
Converting the generated code to ES6 is a little bit tedious, so I’ll just
post the code here and feel free to copy and paste it.
Code for bin/www.js :
// bin/www.js
/**
* Module dependencies.
*/
import app from '../app';
import debugLib from 'debug';
import http from 'http';
const debug = debugLib('your-project-name:server');
// ..generated code below.
Almost all of our modi cations are only at the top and bottom of the
les. We are leaving other generated code as is.
Code for routes/index.js and routes/users.js :
// routes/index.js and users.js
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 7/20
2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
import express from 'express';
var router = express.Router();
Forum Donate
// ..stuff below
Learn to code — free 3,000-hour curriculum
export default router;
Code for app.js :
// app.js
import express from 'express';
import path from 'path';
import cookieParser from 'cookie-parser';
import logger from 'morgan';
import indexRouter from './routes/index';
import usersRouter from './routes/users';
var app = express();
app.use(logger('dev'));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, '../public')));
app.use('/', indexRouter);
app.use('/users', usersRouter);
export default app;
In app.js , because we left public/ at the project root , we need to
change the Express static path one folder up. Notice that the path 'p
ublic' became '../public' .
app.use(express.static(path.join(__dirname, '../public')));
Okay we’re done with converting the code! Let’s setup our scripts
now.
Setting up Scripts
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 8/20
2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
Forum
In setting up scripts, each script performs a different role. And we Donate
reuse each npmLearn
script.
to And
codefor our3,000-hour
— free development and production
curriculum
environments, they have a different con guration. (Almost identical,
you’ll see later) That’s why we need to compose our scripts so we can
use them without repeatedly typing the same stuff all over again.
Install `npm-run-all`
Since some terminal commands won’t work on windows cmd, we need
to install a package called npm-run-all so this script will work for any
environment. Run this command in your terminal project root.
npm install --save npm-run-all
Install babel, nodemon, and rimraf
Babel is modern JavaScript transpiler. A transpiler means your
modern JavaScript code will be transformed to an older format that
Node.js can understand. Run this command in your terminal project
root. We will be using the latest version of babel (Babel 7+).
Note that Nodemon is our le watcher and Rimraf is our le remover
packages.
npm install --save @babel/core @babel/cli @babel/preset-env no
demon rimraf
Adding transpile script
Before babel starts converting code, we need to tell it which parts of
the code to translate. Note that there are a lots of con guration
available, because babel can convert a lot of JS Syntaxes for every
different kinds of purpose. Luckily we don’t need to think about that
because there’s an available default for that. We are using default
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 9/20
2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
con g called as preset-env (the one we installed earlier)Forum
in our Donate
package.json le to tell
Learn Babel—in
to code which
free formatcurriculum
3,000-hour we are transpiling the
code.
Inside your package.json le, create a "babel" object and put this
setting.
// package.json
{
// .. contents above
"babel": {
"presets": ["@babel/preset-env"]
},
}
After this setup we are now ready to test if babel really converts code.
Add a script named transpile in your package.json :
// package.json
"scripts": {
"start": "node ./server/bin/www",
"transpile": "babel ./server --out-dir dist-server",
}
Now what happened here? First we need to run the cli command bab
el , specify the les to convert, in this case, the les in server/ and
put the transpiled contents in a different folder called dist-server in
our project root.
You can test it by running this command
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 10/20
2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
Forum Donate
npm run transpile
Learn to code — free 3,000-hour curriculum
You’ll see a new folder pop up.
New folder popped up called dist-server because of the script we ran.
Yay it worked! ✅ As you can see, there’s a folder that has the same
folder structure as our server folder but with converted code inside.
Pretty cool right? Next step is to run try if our server is running!
Clean script
To have a fresh copy every-time we transpile code into new les, we
need a script that removes old les. Add this script to your
package.json
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 11/20
2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
"scripts": { Forum Donate
"server": "node ./dist-server/bin/www",
Learn
"transpile": to code
"babel — free --out-dir
./server 3,000-hourdist-server",
curriculum
"clean": "rimraf dist-server"
}
This npm script that we made means it removes the folder dist-serve
r/
Now to combine transpile and clean, add a script called build , which
combines the two processes.
// scripts
"build": "npm-run-all clean transpile"
Running dev script
Now we have a build script, we need to run our dev server. We’ll add a
script called dev in our package.json. This takes care of setting our
Node Environment to “development”, removing old transpiled code,
and replacing it with a new one.
"scripts": {
"build": "npm-run-all clean transpile"
"server": "node ./dist-server/bin/www",
"dev": "NODE_ENV=development npm-run-all build server",
"transpile": "babel ./server --out-dir dist-server",
"clean": "rimraf dist-server"
}
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 12/20
2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
Forum
Note here that we’ve changed again the le we are running on our Donate
server script. We’re
Learnrunning the
to code — freele-path withcurriculum
3,000-hour the transpiled code,
found in dist-server/ .
Adding prod scripts
If we have a dev script that sets the Node Environment to
development, we have a prod script that sets it to “production.” We
use this con guration when we are deploying. (Heroku, AWS,
DigitalOcean, etc..) We’re now adding again our start script and prod
script in our package.json again.
"scripts": {
"start": "npm run prod"
"build": "npm-run-all clean transpile"
"server": "node ./dist-server/bin/www",
"dev": "NODE_ENV=development npm-run-all build server",
"prod": "NODE_ENV=production npm-run-all build server",
"transpile": "babel ./server --out-dir dist-server",
"clean": "rimraf dist-server"
}
We set start script default to prod because start script is being used
always by deployment platforms like AWS or Heroku to start a server.
Try either by running npm start or npm run prod .
// package.json
...
"nodemonConfig": {
"exec": "npm run dev",
"watch": ["server/*", "public/*"],
"ignore": ["**/__tests__/**", "*.test.js", "*.spec.js"]
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 13/20
2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
}, Forum Donate
"scripts": {
// ... other scripts
Learn to code — free 3,000-hour curriculum
"watch:dev": "nodemon"
}
How about auto-restarting the server
whenever a file change?
One nal script, in order to complete our development setup. We
need to add a le watcher script that runs a command whenever a
change is made in a le. Add a JSON Object named “nodemonCon g”
in your package.json. This is where we store what we tell the watcher
what to do when a le changes.
Also, add a script called watch:dev in your package.json
// package.json
...
"nodemonConfig": {
"exec": "npm run dev",
"watch": ["server/*", "public/*"],
"ignore": ["**/__tests__/**", "*.test.js", "*.spec.js"]
},
"scripts": {
// ... other scripts
"watch:dev": "nodemon"
}
Nodemon con g contains settings related to
Which command to run whenever a le changes, in our case
npm run dev
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 14/20
2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
What folders and les to watch Forum Donate
And which Learn
les totoignore
code — free 3,000-hour curriculum
More about con guration of nodemon here.
Now that we have our le watcher, you can now just run npm run watc
h:dev , code, and save your le. and whenever you go to localhost:3
000 , you’ll see the changes. Try it out!
Bonus: Add tests!
To add tests in our project, simply install Jest from npm, add a few
con g, and add a script called test in our package.json
npm i -D jest
Add an object called “jest”, and a test script in your package.json
// package.json
...
"jest": {
"testEnvironment": "node"
},
"scripts": {
// ..other scripts
"test": "jest"
}
Try it out, make a le sample.test.js, write any tests, and run the script!
npm run test
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 15/20
2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
Forum Donate
Learn to code — free 3,000-hour curriculum
Sample Screenshot of running npm run test.
TL;DR
Here are the simpli ed steps for how to enable ES6 in Node.js. I’ll also
include the repo so you can copy and inspect the whole code.
Make a new project using express your-project-name
terminal command.
Move the bin/ , routes/ and app into a new folder called
src/ , and convert the code into ES6. Also don’t forget to
rename bin/www to www.js
Install all the dependencies and devDependencies
npm i npm-run-all @babel/cli @babel/core @babel/preset-env nodemon
npm i -D jest
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 16/20
2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
Forum Donate
Add these scripts tocode
Learn to your—package.json
free 3,000-hour curriculum
"scripts": {
"start": "npm run prod",
"build": "npm-run-all clean transpile",
"server": "node ./dist-server/bin/www",
"dev": "NODE_ENV=development npm-run-all build server",
"prod": "NODE_ENV=production npm-run-all build server",
"transpile": "babel ./server --out-dir dist-server",
"clean": "rimraf dist-server",
"watch:dev": "nodemon",
"test": "jest"
}
Put con gurations for babel, nodemon, and jest in your
package.json
"nodemonConfig": {
"exec": "npm run dev",
"watch": [ "server/*", "public/*" ],
"ignore": [ "**/__tests__/**", "*.test.js", "*.spec.js" ]
},
"babel": {
"presets": [ "@babel/preset-env" ]
},
"jest": {
"testEnvironment": "node"
},
Test your scripts by running npm run your-script-here
You’ll see the complete repo at my github
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 17/20
2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
Forum Donate
Notes andLearn
disclaimers
to code — free 3,000-hour curriculum
Note that this setup may not be proved ideal for all situations,
specially for big projects. (like 1k les of code). Transpiling step and
deleting might slow down your development environment. Plus, ES
Modules, is almost coming to node. But, nevertheless, this is a good
eductational material to understand how transipiling runs under the
hood like when we are developing front-end apps :)
Conclusion
All right! I hope you learned a lot. Thank you for reading this far.
Happy Coding!
Check the full repo here.
This article is published in freeCodecamp news.
? Twitter - ? freeCodeCamp - ? Portfolio - ⚛ Github
Jonathan Cunanan
Javascript Engineer / React Dev with AWS Experience. Passionate in
#100DaysOfCode
If you read this far, tweet to the author to show them you care.
Tweet a thanks
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 18/20
2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
Learn to code for free. freeCodeCamp's open source curriculum
Forum has Donate
helped more than 40,000 people get jobs as developers.
Learn to code — free 3,000-hour curriculum
Get started
freeCodeCamp is a donor-supported tax-exempt 501(c)(3) nonpro t organization (United States
Federal Tax Identi cation Number: 82-0779546)
Our mission: to help people learn to code for free. We accomplish this by creating thousands of
videos, articles, and interactive coding lessons - all freely available to the public. We also have
thousands of freeCodeCamp study groups around the world.
Donations to freeCodeCamp go toward our education initiatives, and help pay for servers,
services, and staff.
You can make a tax-deductible donation here.
Trending Guides
What is Docker? What is STEM?
TCP/IP Model JavaScript Void 0
RTF File SQL Delete Row
CSS Transition JavaScript Replace
How to Use Instagram? Python JSON Parser
MBR VS GPT cmd Delete Folder
FAT32 Format What is NFC?
Error 503 Code Content Type JSON
Windows Hosts File Convert HEIC to JPG
Mobi to PDF Math Random Java
WordPress for Beginners Google Docs Landscape
Qualitative VS Quantitative Antimalware Executable
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 19/20
2/8/2021 How to enable ES6 (and beyond) syntax with Node and Express
JavaScript Split String Forum
Windows 10 Start Menu Donate
Accented Letters on Mac Learn to code — free 3,000-hour
Windowscurriculum
10 Command Line
Windows 10 Product Key Google Account Recovery
Our Nonpro t
About Alumni Network Open Source Shop Support Sponsors Academic Honesty
Code of Conduct Privacy Policy Terms of Service Copyright Policy
https://www.freecodecamp.org/news/how-to-enable-es6-and-beyond-syntax-with-node-and-express-68d3e11fe1ab/ 20/20