One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| const express = require('express') | |
| const app = express() | |
| const path = require('path') | |
| const fetch = require('node-fetch') | |
| const PORT = process.env.PORT || 3000 | |
| app.get('/api/user', (req, res) => { | |
| res.json({ name: 'Richard' }); | |
| }); |
A quick guide on how to setup Node.js development environment.
Previous versions of these install instructions had been tested with: