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

internet-of-things

v0.4.1

Published

Netbeast Internet Of Things Open Source documentation packaged to run offline

Downloads

91

Readme

About Netbeast

This documentation will show you all there is to know about Internet of Things development with Netbeast. For basic info on what Netbeast is about, please see the main project website.

Anxious to start right away?

Get Started

What is Netbeast?

As our Github reads:

Netbeast is an open source platform that allows to connect IoT devices regardless of anything.

More specifically, Netbeast is:

  • A Toolbelt that let's you develop Internet of Things applications easier and faster.
  • A platform that hosts your applications and does the hard work of specifically talking to every device.

Logically, it makes sense to combine the use of both to create and offer IoT applications to everyone. Let's have a peek at how it works.

Hello world

Our "Hello World" IoT version is a small application that turns a light into any color we want.

var beast = require('netbeast')

    beast('lights').set({
      color: "#9AD74C",
      power: "on"
    })

Here, the application is using:

The Netbeast API to tell a light, any light, to turn on and with a lime green color.

The Netbeast Dashboard is running on the device where this application is running. This allow to translate messages from any kind of devices.

And that's all there is to it. Using the same principle one can control any device (lights, sound systems, TVs, appliances...).

Apps & Plugins

That's how you use the API to develop applications. The API itself uses plugins to communicate specifically with each brand's devices. Plugins are modular and specific to a certain vendor API or protocol.

Dashboard

The dashboard hosts and runs applications. It provides a user interface from which you can access and manage all your applications.

Demo Dashboard

About these docs

This documentation is broken down into four parts:

  • Getting started does an overview of all the tools available and walks you through the setup process on every available platform.
  • Developing teaches you all there is to know about creating applications and plugins for connected products.
  • API reference is the place to go to learn everything about the Netbeast API and its methods.
  • Contributing provides all the guidelines necessary to submit your code and help improve Netbeast.