Would you like to clone this notebook?

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

Cancel

Shopping Cart Experiment

node v14.20.1
version: 1.0.0
endpointsharetweet
const express = require("@runkit/runkit/express-endpoint/1.0.0"); const axios = require("axios"); const cors = require("cors"); const bodyParser = require('body-parser'); const app = express(exports) app.use(cors()); app.use(bodyParser.json()); app.get('/', async (req, res) => { return res.send("works"); });
Loading…

no comments

    sign in to comment