Skip to content

Commit

Permalink
Added a Blog Project using MERN Stack
Browse files Browse the repository at this point in the history
  • Loading branch information
dhrupad-sah committed Oct 13, 2022
1 parent 4f60aed commit d32f8ec
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Blogs Website/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const express = require('express');

const bodyParser = require('body-parser');

const request = require('request');

const app = express();

app.get

app.listen(3000, ()=>
{
console.log("Server is running on port 3000");
})
Empty file added Blogs Website/index.html
Empty file.
16 changes: 16 additions & 0 deletions Blogs Website/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "blog-website",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Dhrupad Sah",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.0",
"express": "^4.18.1",
"request": "^2.88.2"
}
}

0 comments on commit d32f8ec

Please sign in to comment.