- Create repository - ✅
- Apply
.gitignoreboilerplate for Node.js apps - ✅ - Initialize new project by
npm init(package.json) - - Install
expressframework https://www.npmjs.com/package/express (npm install express, then check package.json)
const express = require('express');
const server = express();
const port = 3000;