
Security News
Re-Enabled GitHub Actions Expose Thousands of Repositories to Mini Shai-Hulud
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.
@tago-io/sdk
Advanced tools
TagoIO provides easy connection of electronic devices with external data to drive smarter decisions using contextual analysis. Supports Node.js, Browser, Deno, and Bun environments.
Official TagoIO SDK for JavaScript. Works across all major JavaScript runtimes and environments.
| what | where |
|---|---|
| TagoIO website | https://tago.io |
| SDK documentation | https://js.sdk.tago.io |
| General documentation | https://docs.tago.io |
npm install @tago-io/sdk
deno add @tago-io/sdk
// ESM (recommended)
import { Device } from "@tago-io/sdk";
// CommonJS
// const { Device } = require("@tago-io/sdk");
const myDevice = new Device({ token: "00000000-2ec4-11e6-a77d-991b8f63b767" });
const myData = {
variable: "temperature",
location: { lat: 42.2974279, lng: -85.628292 },
time: new Date(),
unit: "C",
value: 63,
};
async function sendMyData() {
const result = await myDevice.sendData(myData);
console.log(result);
// 1 Data Added
}
async function getMyData() {
const result = await myDevice.getData({ variables: ["temperature"], query: "last_item" });
console.info("Current Temperature is:", result[0] ? result[0].value : "N/A");
// Current Temperature is: 63
}
// -> See full documentation at: https://js.sdk.tago.io/
| Runtime | ESM | CommonJS | Version |
|---|---|---|---|
| Node.js | ✓ | ✓ | 20+ |
| Browser | ✓ | - | Modern |
| Deno | ✓ | - | 2.0+ |
| Bun | ✓ | ✓ | 1.0+ |
TagoIO SDK for JavaScript in the browser and Node.js is released under the Apache-2.0 License.
FAQs
TagoIO SDK for JavaScript in the browser and Node.js
The npm package @tago-io/sdk receives a total of 1,109 weekly downloads. As such, @tago-io/sdk popularity was classified as popular.
We found that @tago-io/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.

Research
/Security News
The compromise affects MemTensor's MemOS, an open source memory framework for large language models (LLMs) and AI agents. Both npm package @memtensor/memos-cloud-openclaw-plugin and the PyPI package MemoryOS are compromised. They drop cross-platform Go binaries that exfiltrate developer secrets.