A light package using express and ws to connect many HTTP Forge extensions
npm install @tryforge/webserver@tryforge/webserver exists!
bash
npm i @tyrforge/webserver
`
2. Create your first route
`js
const { app } = require('@tryforge/webserver')
const server = new app(port)
//And from now on you can use anything that express uses!
//If you wanna use ws then just do server.ws and you can use whatever ws uses!
``