Node 🪦

Awesome damn project :0

This is a description of the project And here is a link to npm its zero to hero guide is here learn

Express basic

import express from 'express'

const app = express()

app.get('/', (req, res) => {
    res.send('Hello World')
})

app.listen(3000)

Node Package Manager

npm is a package manager

Node Module System

const imports = require('./first-module')

console.log(imports.add(1, 3))