mirror of
https://github.com/twirl/The-API-Book.git
synced 2025-05-19 21:33:04 +02:00
9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
const express = require('express');
|
|
const port = process.argv[2];
|
|
|
|
express()
|
|
.use('/', express.static('docs'))
|
|
.listen(port, () => {
|
|
console.log(`Docs Server is listening port ${port}`);
|
|
});
|