Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f69732c commit a538b04Copy full SHA for a538b04
package.json
@@ -29,7 +29,6 @@
29
"express": "^4.16.3",
30
"mongodb": "^3.1.0",
31
"nodemon": "^1.17.5",
32
- "nodejs":"^5.7.1",
33
"express-jwt": "^3.0.1",
34
"express-session": "^1.11.3",
35
"jsonwebtoken": "^5.0.2"
server.js
@@ -1,12 +1,10 @@
1
var express = require('express');
2
var app = express();
3
-var bodyparser=require('bodyparser');
4
-
5
6
7
8
app.get('/', function (req, res) {
9
- res.send('Hello World!');
+ res.send('Welcome to coderplex');
10
});
11
app.listen(3000, function () {
12
console.log('Example app listening on port 3000!');
0 commit comments