This is a express like package for working in the Moddable SDK. This is not meant to be a 1-1 port, but it attempts to maintain the same interface we know from express.
git clone https://github.com/dashcraft/express-js-mod.git
or git clone [email protected]:dashcraft/express-js-mod.git
cd express-js-mod && yarn install
yarn build
Copy the /express-js-mod
folder into your moddable sdk project,
then add the express-js-mod package to your projects manifest.json includes:
"./express-js-mod/manifest.json"
First import the primary package
import Express from 'express-js-mod'
Afterwards, when the moddable sdk server has been created...
import { Server } from "http";
We can add routes and callbacks like...
let app = new Express(Server)
app.get('/home', function(req,res) {
res.status(200)
res.json({test: 'test'})
})
let port = 80 // 80 is the default anyways
app.listen(port)
We can send resources as responses in routes and callbacks like...
let app = new Express(Server)
app.get('/home', function(req,res) {
res.sendResource(new Resource("index.html"))
})
let port = 80 // 80 is the default port
app.listen(port)
- Tests, tests, more tests
- Query Params
- Inbound Data Handling
- Post route test
- Put/Patch route test
- Delete route test
- Support Hash of Routes using app.route()
- Inbound Chunked Buffer handling
- Outbound Chunked Buffer handling
- res.sendResource()
- mime-types
- buffers
- Event Streams
- Add fallback route support
- Add regex route matching support