how to sveltekit with expressjs

Aug 13, 2022, 12:26 AM
3 0 7

comments (single view)

const express = require('express')
const app = express()
app.get('/', (req, res) => {
res.send('FOR SHOVELRY!')
})
View all comments