Skip to content

Commit

Permalink
Merge pull request #240 from dhrupad-sah/main
Browse files Browse the repository at this point in the history
Added a Blog Project using MERN Stack
  • Loading branch information
gantavyamalviya authored Oct 20, 2022
2 parents a2002c0 + d32f8ec commit 33cbf06
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 33cbf06

Please sign in to comment.