# track.js **Repository Path**: mirrors_tellnes/track.js ## Basic Information - **Project Name**: track.js - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2025-12-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Track.js ## Install $ npm install -S track ## Include track ```js var track = require('track') ``` ## Express example ```js app.get('/', function (req, res, next) { var t = track() db.select('user', t('user')) db.select('data', t('data')) t.end(function (err, locals) { if (err) return next(err) res.render('something', locals) }) }) ``` ## Hello World example ```js var t = track() t('name', function (cb) { cb(null, 'World') })() t('hello', ['name'], function (name, cb) { cb(null, 'Hello ' + name) })() t.end(function (err, results) { console.log(results.hello === 'Hello World') }) ``` ## Licence MIT