# lasagna.js **Repository Path**: mirrors_Automattic/lasagna.js ## Basic Information - **Project Name**: lasagna.js - **Description**: Lasagna.js is the official client of the Lasagna web service - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-07-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Lasagna.js Lasagna.js is the official client of the Lasagna web service. Lasagna is a real-time "layer" in between serverside properties and web/mobile clients, functioning as a lightweight message bus. This client provides: - ⏩ Websocket Connectivity: keepin' it real(time). - 🧬 Multiplexing: one tube, myriad of topics. - 🗝️ JWT Auth Management: we reach out to you, you sign, we send. - 📘 TypeScript Types: to tell thee truth to thy terminal. ## Getting Started 1. `npm install @automattic/lasagna` 2. `import Lasagna from '@automattic/lasagna'` 3. `const lasagna = new Lasagna( myJwtFetcherCallback )`; `myJwtFetcherCallback` is any function with the following signature: ```JavaScript ("socket" | "channel", params) => Promise ``` `params` is a passthrough of the `params` given to `initSocket` or `initChannel`. The function should make a request to your domain's Lasagna JWT issuer endpoint and return a JWT appropriate for the concern. ## Contributing Pull requests are welcome. For major changes, please open an issue first to discuss the change. Please attach tests when appropriate. Use judgement. ## Additional Tips To run unit tests: ``` npm test ``` To run type-checking manually: ``` npm run lint ```