43 lines
1.0 KiB
JavaScript
43 lines
1.0 KiB
JavaScript
// Get dependencies
|
|
const express = require('express');
|
|
const path = require('path');
|
|
const http = require('http');
|
|
const bodyParser = require('body-parser');
|
|
|
|
// Get our API routes
|
|
const thingapi = require('./server/routes/thingapi');
|
|
const webapi = require('./server/routes/webapi');
|
|
|
|
const app = express();
|
|
|
|
// Parsers for POST data
|
|
app.use(bodyParser.json());
|
|
app.use(bodyParser.urlencoded({ extended: false }));
|
|
|
|
// Point static path to dist
|
|
app.use(express.static(path.join(__dirname, 'dist')));
|
|
|
|
// Set our api routes
|
|
app.use('/thingapi', thingapi);
|
|
app.use('/webapi', webapi);
|
|
|
|
// Catch all other routes and return the index file
|
|
app.get('*', (req, res) => {
|
|
res.sendFile(path.join(__dirname, 'dist/index.html'));
|
|
});
|
|
|
|
/**
|
|
* Get port from environment and store in Express.
|
|
*/
|
|
const port = process.env.PORT || '3000';
|
|
app.set('port', port);
|
|
|
|
/**
|
|
* Create HTTP server.
|
|
*/
|
|
const server = http.createServer(app);
|
|
|
|
/**
|
|
* Listen on provided port, on all network interfaces.
|
|
*/
|
|
server.listen(port, () => console.log(`API running on localhost:${port}`)); |