sandeepnegi1996 / node-express-api

This is my first api using node js and express

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

node js api using express

express is a framework by which it is easier to create an api

const express = require("express");
const app = express();
app.get("/", (req, res) => {
  res.send("hello world!!!");
});
app.listen(3000, () => {
  console.log("listening");
});

Update your api as you save

install nodemon
npm i -g nodemon
nodemon app.js

About

This is my first api using node js and express


Languages

Language:JavaScript 100.0%