The hassle-free way to integrate analytics into any Node.js application
npm install analytics-nodeA Node.js client for Segment — The hassle-free way to integrate analytics into any application.

You can't fix what you can't measure
Analytics helps you measure your users, product, and business. It unlocks insights into your app's funnel, core business metrics, and whether you have product-market fit.
Segment collects analytics data and allows you to send it to more than 250 apps (such as Google Analytics, Mixpanel, Optimizely, Facebook Ads, Slack, Sentry) just by flipping a switch. You only need one Segment code snippet, and you can turn integrations on and off at will, with no additional code. Sign up with Segment today.
2. Install tracking for the last time. We're the last integration you'll ever need to write. You only need to instrument Segment once. Reduce all of your tracking code and advertising tags into a single set of API calls.
3. Send data from anywhere. Send Segment data from any device, and we'll transform and send it on to any tool.
4. Query your data in SQL. Slice, dice, and analyze your data in detail with Segment SQL. We'll transform and load your customer behavioral data directly from your apps into Amazon Redshift, Google BigQuery, or Postgres. Save weeks of engineering time by not having to invent your own data warehouse and ETL pipeline.
For example, you can capture data on any app:
``js`
analytics.track({ userId: '019mr8mf4r', event: 'Order Completed', properties: { price: 99.84 }});
`
Then, query the resulting data in SQL:
sql`
select * from app.order_completed
order by price desc
`bash`
$ npm install analytics-node
`js
const Analytics = require('analytics-node');
const client = new Analytics('write key');
client.track({
event: 'event name',
userId: 'user id'
});
`
Defining `sentAt` in the payload will cause the specified `timestamp`` to be ignored
Documentation is available at https://segment.com/libraries/node.
Copyright © 2017 Segment Inc. \