internet-of-things

Netbeast Internet Of Things Open Source documentation packaged to run offline

Usage no npm install needed!

<script type="module">
  import internetOfThings from 'https://cdn.skypack.dev/internet-of-things';
</script>

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.