UNPKG

@faisalrmdhn08/allin-cli

Version:

A modern full-stack CLI tool based on Typescript designed to accelerate your app development process — setup your entire stack in one seamless command.

13 lines (9 loc) 247 B
import express from 'express'; const app = express(); const port = 3000; app.get('/', (request, response) => { response.send('Hello, Express!'); }); app.listen(port, () => { console.log(`Server is running at http://localhost:${port}`); });