1.0.0 • Published 2 years ago
cble.js-beta v1.0.0
Feature
- Easy to learn
- Simple
SetUp
const { API } = require("cble.js");
const api = new API({
port: 3000, //default port or use your port.
});
api.routeAdd({
path: "/",
code: `
send('HelloWorld')
`})
api.deploy(()=>{
comsole.log(`running at port ${port}`)
}) // deploy your API.