npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

dpd-api-token

v1.0.7

Published

Simple, Sessionless api-token authentication for deployd (+Ganalytics)

Downloads

13

Readme

Simple, Sessionless api-token authentication for deployd with Ganalytics API metrics support

Usage

$ npm install dpd-acl-roles-permissions dpd-api-token --save

app.js:

  require('dpd-api-token')( require('deployd/lib/router'), 'users','apikey')  // <----- add this
  try{
    var deployd = require('deployd')
    var dpd = deployd({port:3000});
    dpd.listen();
  }catch(e){
    console.error(err.toString()) // becomes exception in analytics 
  }

test on the commandline:

$ curl -X GET "http://localhost:1882/foo"
{"message":"no permission / not loggedin (session expired)", "status":401, "statusCode":401}

$ curl -X GET -H 'X-API-VERSION: 1.0' -H 'X-API-TOKEN: foo' "http://localhost:1882/foo"
[]

NOTE: Follow dpd-acl-roles-permissions tutorial. Once you got permissions going, come back here, and specify your resource-usercollection above ('users') and its property which holds the apikey ('apikey').

Notes

  • both X-API-VERSION and X-API-TOKEN should be specified (version is only used for analytics ) {
  • req.user or ctx.req.user is populated with the user when an X-API-TOKEN-header matches apikey of a users-collection.

Api metrics using google analytics (GA)

make sure you set these environment variables:

  • export GA_TOKEN=XX-XXXXXX
  • export NODE_ENV=production
  • export APINAME=myapi
  • export GA_BUFFERTIME=5000

Basically each request is buffered, and sent as google analytics events every GA_BUFFERTIME milliseconds.

You can view realtime requests at Realtime > Events, or create dashboards to sort/display the events.

NOTE: you can add events to analytics, anywhere from within deployd :

process.server.ga.event("action name", "label/value")      // buffered event (adviced)
process.server.ga.timing("category", "actionname", 12)     // buffered event (adviced)
console.error("something went wrong")                      // sends exception 
process.server.ga.ua                                       // universal analytics object for unbuffered use 

}

for more info on ua usage see docs

NOTE: this module also tracks the processing time of each request (see 'Server Response Time' in google analytics pageviews)