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

node-red-contrib-itemsense

v5.2.2

Published

Node-RED contribution that adds node for the use of Impinj ItemSense IoT platform

Downloads

195

Readme

node-red-contrib-itemsense

Node-RED contribution package that adds nodes which enable the use of Impinj ItemSense IoT Platform

On Par with ItemSense 2017R1

Setting up

Just want to run it

  • install node-red: npm install -g node-red (you may need sudo)
  • install the package: npm install -g node-red-contrib-itemsense
  • optionally, install the robot package npm install -g node-red-contrib-icreate-upnp
  • optionally, crete a settings file, and use the settings.js file in this repository to change the look and feel of your installation (you need to copy the impinj directory to where your settings file is)
    • For Mac and Linux:
      • cp -fr /usr/local/lib/node_modules/node-red-contrib-itemsense/impinj ~/.node-red
      • cp -fr /usr/local/lib/node_modules/node-red-contrib-itemsense/settings.js ~/.node-red
    • For Windows:
      • mkdir <root>:\Users\<yourname>\.node-red\impinj
      • copy <root>:\Users\<yourname>\AppData\Roaming\npm\node-modules\node-red-contrib-itemsense\impinj <root>:\Users\<yourname>\.node-red\impinj
      • copy <root>:\Users\<yourname>\AppData\Roaming\npm\node-modules\node-red-contrib-itemsense\settings.js <root>:\Users\<yourname>\.node-red
  • Afterwards, all you have to do is run it with node-red command

Sample flows included in the samples directory

  • In the github repo, samples directory contains a README.md file that explains how to use samples
  • There are also other samples, for example instructions on how to run the collection as a service on OSX or Ubuntu Xenial.

Setting up for development

  • clone this repository and go to its directory cd node-red-contrib-itemsense
  • install Node-RED (locally so you can edit sources) npm install node-red
  • optionally, to use iCreate2 robot in your tests you can install nodes from it. npm install node-red-contrib-icreate-upnp
  • run node-red locally using the settings file provided node node_modules/node-red/red.js --settings settings.js

To learn about using Impinj Itemsense API with Node, see the Itemsense-node package.

Nodes depend on "itemsense" flow variable. start the flow with a connect node to create the needed variable. The connect node has a config tab to indicate the Itemsense instance. Alternatively, the msg.payload of the incoming message to the connect node can be an object:

msg.payload = {
    itemsenseUrl: "http://<your Itemsense Instance>[:port]/itemsense",
    username: "<your username>",
    password: "<your password>"
};

in this case the msg.payload properties will override the configuration properties.

This can be used to specify the Itemsense instance during runtime by passing the properties in an Http or websocket call.