Guest User

Untitled

a guest
Aug 16th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. const express = require('express');
  2. const cors = require('cors');
  3.  
  4. const app = express();
  5.  
  6. app.use(cors());
  7.  
  8. app.get('/', (req, res) => {
  9. res.send('test');
  10. });
  11.  
  12. app.listen(3001, () => {
  13. console.log("listening port 3001");
  14. });
Add Comment
Please, Sign In to add comment