🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

@eddaic/nestjs-thingsboard-http-integration

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eddaic/nestjs-thingsboard-http-integration

NestJS Module for ThingsBoard HTTP Integration

latest
Source
npmnpm
Version
2.4.0
Version published
Weekly downloads
13
-88.29%
Maintainers
1
Weekly downloads
 
Created
Source

nestjs-thingsboard-http-integration

Simple NestJS Module to make Thingsboard HTTP Integration upload calls.

Installation

npm install @eddaic/nestjs-thingsboard-http-integration

Usage

Initializing

import { ThingsBoardHttpIntegrationModule } from '@eddaic/nnestjs-thingsboard-http-integration';
import { Module } from '@nestjs/common';
import { ConfigModule, ConfigService } from '@nestjs/config';

@Module({
  imports: [
    ThingsBoardHttpIntegrationModule.registerAsync({
      imports: [ConfigModule],
      inject: [ConfigService],
      useFactory: (config: ConfigService) => ({
        baseUrl: config.get('THINGSBOARD_URL'), // Not required. Defaults to 'https://thingsboard.cloud'
        integrationId: config.get('THINGSBOARD_INTEGRATION_ID'), // Can get from the thingsboard integrations dashboard
      }),
    }),
  ],
  providers: [AppService],
})
export class AppModule {}

Keywords

nestjs

FAQs

Package last updated on 15 Oct 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