mirror of
https://github.com/jwetzell/aas-js.git
synced 2026-08-06 13:23:37 +00:00
9 lines
167 B
JavaScript
9 lines
167 B
JavaScript
const express = require('express');
|
|
const path = require('path');
|
|
|
|
const app = express();
|
|
|
|
app.use(express.static(path.join(__dirname, './html')));
|
|
|
|
app.listen(3000);
|