All Downloads are FREE. Search and download functionalities are using the official Maven repository.

telemetry.server.js Maven / Gradle / Ivy

The newest version!
const express = require('express');

const app = express();

app.use(express.static(__dirname));

const PORT = 3000;
app.listen(PORT, () => console.log('browse localhost:' + PORT));




© 2015 - 2025 Weber Informatics LLC | Privacy Policy