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

ec2-instance-data-promise

v0.5.0

Published

recursively retrieve ec2 instance data via http.get. With Promises(bluebird)

Downloads

2

Readme

ec2-instance-data

Recursively retrieve EC2 instance data via http.get.

Note: this assumes that a metadata service is available at http://169.254.169.254/. Thus it works on EC2 instances, behavior on other machines is undefined. See the test/ folder for a fake service you can use for testing elsewhere.

Install

    npm install ec2-instance-data

Example

    var instance = require("ec2-instance-data");

    instance.init(function () {
        console.log("instance.latest = %s", JSON.stringify(instance.latest, null, "  "));
    });

Details

Amazon makes available to EC2 instances a variety of instance specific data via http GET calls to a magic IP address and a set of well-known paths. However the exact data available depends on what features the instance was started with (e.g. security groups, IAM roles, instance type, etc.), and Amazon adds more stuff over time, leading to maintenance headaches for any module that tries to wrap this with an API. This module smooths over that variability by recursively spidering the URLs starting from a couple common roots: /latest/meta-data/ and /latest/dynamic/ (the roots can be overridden if desired). While it does generate a lot of http requests, it still only takes about 50 milliseconds to spider the default data set, which should be tolerable when starting a service.

EC2 Tags

There is another store of meta-data for EC2 instances, tags. By default all instances created via the console have a Name tag, but you can add others. The tags for the current instance can be accessed via the initTags method, which must be called after init. This uses EC2's DescribeTags API via the AWS SDK for Node.js. Because this is an optional dependency you must explicitly install it with npm install aws-sdk. To access the tags the client must be initialized with credentials for an account with permission to use the DescribeTags API, by far the simplest way to do this is to assign an IAM role to the instance, in which case it will "just work", e.g.

var instance = require("./index.js");

instance.init(function (error, data) {
  if (error) {
    console.log(error);
    process.exit();
  } else {
    instance.initTags(console.log);
  }
});
{
    "Name": "MyInstanceName",
    "OtherTag": "SomethingElse"
}

If no IAM Role is available you can set the credentials explicitly before calling initTags, see aws-sdk docs for details.

Change Log

  • 0.4.1: squish bug that only happens in error case
  • 0.4.0: updated optional aws-sdk dependency to ~ 2.1.9, fixed API call per @simonlast
  • 0.3.5: updated optional aws-sdk dependency to > 0.9.7, removed moot IAM credential logic
  • 0.3.1: added fake metadata server for testing outside EC2
  • 0.3.0: added built-in support for querying EC2 tags (initTags method)

Acknowledgements

This module inspired in part by several other efforts in the same realm, including ec2-user-data and ec2metadata by @kilianc, which is worth considering as an alternative to this.

License

MIT