upblit-express
v1.0.1
Published
The Upblit SDK for express framework
Downloads
231
Readme
upblit-express
Simple observation and monitoring setup for Express apps using Upblit.
Set up application observation in seconds with just two lines of code.
🚀 Installation
npm install upblit-express📌 Prerequisites
- Create an Express application at https://upblit.dev
- Generate your observation token from the dashboard
⚡ Quick Setup
Add the middleware to your Express app.
const upblit = require("upblit-express");
app.use(upblit("<YOUR_TOKEN>"));That’s it. Observation is now enabled.
🧠 How It Works
upblit-express adds monitoring and observation capabilities to your Express application using your Upblit token. Once connected, your app automatically starts sending observation data to Upblit.
🧩 Example
const express = require("express");
const upblit = require("upblit-express");
const app = express();
app.use(upblit("<YOUR_TOKEN>"));
app.get("/", (req, res) => {
res.send("Hello World");
});
app.listen(3000);🔐 Token
You can obtain your token from your Upblit dashboard after creating an application.
📦 Requirements
- Node.js
- Express
🛠 Support
For issues or feature requests, please open an issue in the repository.
