Would you like to clone this notebook?

When you clone a notebook you are able to make changes without affecting the original notebook.

Cancel

My First Playground

node v14.20.1
version: 1.0.0
endpointsharetweet
const express = require('express') const app = express() app.use(express.json()) app.get('/', (req, res) => { res.send({ code: 0, data: 'Hello' }) }) app.listen(3000, () => { console.log('Server is running...') })
Loading…

no comments

    sign in to comment