mini-umami
v0.5.3
Published
A tiny Umami helper for Node.js
Downloads
15
Readme
Mini Umami
A tiny universal JS library for tracking with Umami API:
import umami from "mini-umami";
// Optional, otherwise will read process.env.UMAMI_ID
umami.id = "50429a93-8479-4073-be80-d5d29c09c2ec"; // Your website id
// Optional, otherwise will read process.env.UMAMI_TRACKER, or default to Umami Cloud
umami.tracker = "https://cloud.umami.is/"; // The Umami Tracker host URL, NOT your site URL
// Track page views or events
await umami.view("/exercises", { ...options });
await umami.event("event-name", { ...options });
// If you use Express and want to track page views:
app.use(umami.express);
Compared to @umami/node
:
- Allows you to pass the client's User Agent as
agent
. - Allows you to pass the client's IP as
ip
. - Has a Express connector that automates all of the above with a simple middleware.
Options
You can set two options as the environment variables, with these names:
# .env
UMAMI_ID=50429a93-8479-4073-be80-d5d29c09c2ec
UMAMI_TRACKER=https://cloud.umami.is/
Otherwise, you can set those on the umami instance as:
umami.id
*: the ID of the website you are tracking.umami.tracker
: the url of the domain where the Umami instance is running, defaults to Umami Cloudhttps://cloud.umami.is/
.
Finally, the argument options available are:
id
*: the ID of the website you are tracking.tracker
: the url of the domain where the Umami instance is running, defaults to Umami Cloudhttps://cloud.umami.is/
.ip
: the IP of the user/client. For Express, usually useip: req.headers['x-forwarded-for'] || req.socket.remoteAddress
.agent
: the user agent of the user visiting. It will default to Node.js.hostname
: Hostname of server, e.g."practice.cards"
.language
: Client language, e.g."en-US"
.referrer
: Page referrer, e.g.https://x.com/
.screen
: Screen dimensions (eg. 1920x1080)title
: Page titledata
: Event data properties
*The "id" is mandatory, so it needs to be set up either as an env variable UMAMI_ID
, on the instance as umami.id
or as the argument option id
.
They go, in order of preference: argument option, or instance option, or environment variable.
API
All of the methods are async, but they can be awaited for or just not awaited for, in which case it will be deferred and complete eventually (for persistent servers, if you are in a lambda you might want to wait for it):
umami.view("/hello"); // Will resolve later
await umami.view("/hello"); // Will block the rest of execution until resolution
.view(path, options)
Track a pageview by passing the path to the function:
umami.view("/hello");
You can configure the rest of the options:
umami.view("/hello", {
title: "Welcome Screen",
agent: req.headers["user-agent"],
});
.event(name, options)
Track a pageview by passing the path to the function:
await umami.event("signup");
You can configure the rest of the options:
await umami.event("signup", {
title: "User Sign Up",
agent: req.headers["user-agent"],
data: { userId: 324 },
});
.express(req, res, next)
Automatically track page views with Express:
import umami from "mini-umami";
// Assuming your .env is properly setup
const app = express();
app.use(umami.express);
// ... other express routes
This method will automatically get extra information from Express like the referrer
, language
, user-agent
, etc. However note that the screen size will be set as "1920x1080" for desktop and "360x720" for mobile since in the backend we cannot get the device size.
You can then still track other things as usual:
import umami from "mini-umami";
const app = express();
app.use(umami.express);
app.post("/signup", (req, res) => {
umami.event("Signup");
// ...
});