We're opensource
Star on GitHub
Deeper insights into your API usage with realtime analytics, logging, alerts and usage reports.
Express
Fastify
Adonis
Meteor
Hono
Koa
1import express from "express"
2import {record} from "@logdrop/node"
3
4const app = express()
5
6const logDrop = record("YOUR_API_KEY")
7
8app.use(logDrop)
9
10app.get("/ping", (req, res) => {
11 res.send("Pong!")
12})
13
npm install @logdrop/node
Our source code is available on GitHub, and you are welcome to read, review, or contribute to its development as you see fit!