New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

shelly-forge

Package Overview
Dependencies
Maintainers
0
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

shelly-forge

A framework for developing Shelly device scripts

  • 0.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
23
decreased by-88.21%
Maintainers
0
Weekly downloads
 
Created
Source

Shelly Forge

npm version

Shelly Forge is a TypeScript framework and CLI tool for developing, testing, and deploying scripts to Shelly smart home devices. It provides a modern development experience with type safety, live reloading, and real-time debugging capabilities.

Overview

Shelly Forge simplifies the development of Shelly Scripts by providing:

  • Full TypeScript support with type definitions for Shelly's API
  • CLI tools for project scaffolding and deployment
  • Live development server with automatic compilation
  • Real-time device logs and debugging
  • Project templates and examples

Quick Start

  1. Create a new project:
npx shelly-forge init my-project
cd my-project
npm install
  1. Create your first script:
npm run create my-script '${DEVICE_HOSTNAME}' solutionA
  1. Start development:
npm run dev

Concepts

  • Solutions: A solution is a collection of scripts that are deployed to a specific device(s).
  • Scripts: A script is a piece of code that is deployed to a specific device.
  • Devices: A device is a Shelly smart home device.

Project Structure

my-project/
├── build-cache/      # Build cache directory
├── dist/             # Compiled output
├── node_modules/     # Dependencies
├── src/              # Source code directory
├── .editorconfig     # Editor configuration
├── .gitignore        # Git ignore rules
├── .env              # Environment variables
├── solutions.config.json # Solution configuration
├── package-lock.json # Lock file for dependencies
├── package.json      # Project configuration
└── tsconfig.json     # TypeScript configuration

Solution Configuration

Solutions are defined in a JSON configuration file that maps scripts to specific devices. Each solution can have multiple components, and each component specifies:

  • src: Path to the script source file
  • device: Target device hostname/IP (can use environment variables)
  • enableOnBoot: Whether the script should run on device boot

Example solutions.config.json:

{
    "boiler": {
        "mqtt": {
            "src": "src/boiler/mqtt.ts",
            "device": "${BOILER_HOSTNAME}",
            "enableOnBoot": true
        },
        "thermostat": {
            "src": "src/boiler/thermostat.ts",
            "device": "${BOILER_HOSTNAME}",
            "enableOnBoot": true
        }
    }
}

Device hostnames/IPs can be provided through environment variables using the ${VARIABLE_NAME} syntax. This allows you to keep device-specific configuration separate from your code and easily switch between different environments.

For example, you could set the boiler hostname in your .env file:

BOILER_HOSTNAME=192.168.1.100

Writing Scripts

Basic Script

The script is wrapped into IIFE (Immediately Invoked Function Expression) and deployed to the device. For example, to subscribe to temperature updates, you can use the following code:

// Subscribe to temperature updates
Shelly.addEventHandler(async (event) => {
    if (event.component === 'temperature') {
        print('Temperature: ' + event.data.tC + '°C');
    }
});

Reusable code

Scripts are bundled into a single file, which makes it possible to reuse code between scripts. For example we can have a helloWorld.ts script, which uses a custom print function. File src/solutionA/printer.ts

export function printMessage(message: string) {
    print('Hello World from printer: ' + message);
}

File src/solutionA/helloWorld.ts

import { printMessage } from './printer';

printMessage('Hello World from test');

CLI Commands

Project Management

  • shelly-forge init [name] - Create new project
  • shelly-forge deploy - Deploy scripts to device
  • shelly-forge debug <on|off> - Toggle debug mode
  • shelly-forge create <name> <hostname> - Create a new script

Development

  • npm run dev - Start development server
  • npm run build - Build for production
  • npm run deploy - Deploy to device

API Reference

Device APIs

Shelly Forge provides TypeScript definitions for all device APIs. Please refer to the Shelly API documentation for more details.

// Component Control
Shelly.call('Switch.Set', { id: 0, on: true });

TODO

  • Add support for unit tests
  • Add Shelly device emulators
  • Improve the logs function to show only the logs and not the whole event object

Contributing

Contributions are welcome! Please see our Contributing Guide for details.

License

MIT License - see LICENSE for details.

Support

Keywords

FAQs

Package last updated on 03 Feb 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc