TuringsSolutions commited on
Commit
d922d99
·
verified ·
1 Parent(s): 73b13c8

Create app.js

Browse files
Files changed (1) hide show
  1. app.js +11 -0
app.js ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ const express = require('express');
2
+ const app = express();
3
+ const port = 7860;
4
+
5
+ app.get('/', (req, res) => {
6
+ res.send('Hello World!');
7
+ });
8
+
9
+ app.listen(port, () => {
10
+ console.log(`App running on port ${port}`);
11
+ });