uws-pack
v20.0.8
Published
Repack of [uWebSockets.js](https://github.com/uNetworking/uWebSockets.js).
Maintainers
Readme
uws-pack
Repack of uWebSockets.js.
Note: Major versions of the
uws-packpackage utilize the same Node.js native binaries (uws_${process.platform}_${process.arch}_${process.versions.modules}.node) and code as the corresponding major versions of theuWebSockets.jspackage.
Changes
- full ESM
Installation
yarn add uws-packAlternative
Use dependency alias:
yarn add uWebSockets.js@npm:[email protected]Usage
import { App } from 'uws-pack'
const port = +(process.env.PORT || 3000)
const app = App()
.listen(port, (listenSocket) => {
if (listenSocket) {
console.log(`Server running at http://localhost:${port}`)
} else {
console.log(`Failed to listen to port ${port}`)
}
})With Alternative usage is the same of uWebSockets.js:
import { App } from 'uWebSockets.js'
const port = +(process.env.PORT || 3000)
const app = App()
.listen(port, (listenSocket) => {
if (listenSocket) {
console.log(`Server running at http://localhost:${port}`)
} else {
console.log(`Failed to listen to port ${port}`)
}
})Note: For more info, see
uWebSockets.jsDocumentation.
License
This project is licensed under the MIT License.
Licenses for third-party projects are listed in THIRD-PARTY-LICENSE.
