Skip to content

Instantly share code, notes, and snippets.

View DanielFL0's full-sized avatar
👁️‍🗨️
Kernel Panic

Daniel彡 DanielFL0

👁️‍🗨️
Kernel Panic
View GitHub Profile
@DanielFL0
DanielFL0 / app.js
Last active November 4, 2022 04:39
Create a simple node.js backend framework
import http from 'http'
function App () {
this.plugins = []
}
App.prototype.use = function (middleware) {
this.plugins.push(middleware)
}