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 🙏

© 2026 – Pkg Stats / Ryan Hefner

techno4-total

v2.0.4

Published

TECHNO4 FRAMEWORK2 Headless Total.js v5 engine and Tangular integration

Readme

TECHNO4 Total Engine (techno4-total)

Headless бекенд-рушій та серверна платформа для TECHNO4 FRAMEWORK2
Headless backend engine and server runtime for TECHNO4 FRAMEWORK2

License: LGPL-3.0-or-later Organization


uk_UA  |  en_GB



uk_UA

🎯 Мета проєкту

Вільна ініціатива розвитку сучасних інструментів розробника за підтримки благодійної організації «БЛАГОДІЙНИЙ ФОНД ТЕХНО4» (CO «CF TECHNO4»).

techno4-total — це високоефективний, модульний серверний JavaScript-рушій та headless-платформа у складі екосистеми TECHNO4 FRAMEWORK2. Рушій оптимізовано для створення REST API, WebSocket-сервісів, систем потокової обробки даних (ThreadsStream), мікросервісів та прямої взаємодії з апаратними інтерфейсами (Serial COM, Web Audio, MIDI).

⚡ Ключові можливості

  • Апаратні інтерфейси: вбудовані субмодулі для роботи з серійними портами (techno4-total/serial), Web Audio API (techno4-total/audio) та MIDI-контролерами (techno4-total/midi).
  • Швидкісний HTTP/WebSocket стек: оптимізований маршрутизатор запитів, підтримка кластеризації, стримінгу файлів та двостороннього зв'язку в реальному часі.
  • Вбудована NoSQL база даних: файлова документоорієнтована NoSQL база даних без необхідності підняття зовнішніх СУБД.
  • Tangular шаблонізатор: надшвидкий компілятор шаблонів (techno4-total/tangular).
  • Схеми та Дії (Schemas & Actions): декларативний механізм опису бізнес-логіки та валідації вхідних даних.
  • Фундамент для Threads Studio: слугує ядром запуску візуального редактора потоків techno4-threads.

📦 Встановлення

npm install techno4-total

🚀 Швидкий старт

Запуск простого HTTP-сервера:

// index.js (CommonJS)
require('techno4-total');

ROUTE('GET /', function() {
    this.json({ status: 'ok', framework: 'TECHNO4 FRAMEWORK2' });
});

HTTP('8008');

Або з використанням ES Modules (index.mjs):

import 'techno4-total';

ROUTE('GET /api/status', function() {
    this.json({ uptime: process.uptime(), memory: process.memoryUsage() });
});

HTTP('8008');

Робота з апаратними інтерфейсами:

// Serial COM порт
import { SerialPort } from 'techno4-total/serial';

// Web Audio API
import { AudioContext } from 'techno4-total/audio';

// MIDI контролери
import easymidi from 'techno4-total/midi';

🛠 Утиліти командного рядка (CLI)

Пакунок надає консольні команди:

techno4-total [options]
t4-total [options]

📚 Офіційна документація

Повна документація та інструкції з розробки:
👉 https://techno4.online/надбання/фреймворк

⚖️ Ліцензія та права

Вихідний код розповсюджується за ліцензією LGPL-3.0-or-later.
Підтримується: благодійна організація «БЛАГОДІЙНИЙ ФОНД ТЕХНО4» (CO «CF TECHNO4»).
Автор: Mykola Zghurskyi ([email protected]).
Містить адаптовані компоненти платформи Total.js (MIT License).


en_GB

🎯 Project Mission

A free initiative fostering modern developer tools, supported by the charitable organization "CO «CF TECHNO4»" (благодійна організація «БЛАГОДІЙНИЙ ФОНД ТЕХНО4»).

techno4-total is a high-performance, modular headless JavaScript engine and backend runtime for the TECHNO4 FRAMEWORK2 ecosystem. Optimized for building REST APIs, real-time WebSocket communication, event-driven ThreadsStream pipelines, microservices, and direct hardware interfacing (Serial COM, Web Audio, MIDI).

⚡ Key Features

  • Hardware Interfacing: Built-in submodules for Serial COM ports (techno4-total/serial), Web Audio API (techno4-total/audio), and MIDI controllers (techno4-total/midi).
  • High-Throughput HTTP & WebSocket Stack: Optimized router, clustering support, streaming file transfers, and duplex real-time events.
  • Embedded NoSQL Database: Zero-config document-based embedded NoSQL engine requiring no external database servers.
  • Tangular Template Engine: Ultra-fast template compiler (techno4-total/tangular).
  • Schemas & Actions: Declarative business logic and request payload validation.
  • Core Engine for Threads Studio: Powers the techno4-threads visual programming environment.

📦 Installation

npm install techno4-total

🚀 Quick Start

Basic HTTP Server:

// index.js (CommonJS)
require('techno4-total');

ROUTE('GET /', function() {
    this.json({ status: 'ok', framework: 'TECHNO4 FRAMEWORK2' });
});

HTTP('8008');

Or using ES Modules (index.mjs):

import 'techno4-total';

ROUTE('GET /api/status', function() {
    this.json({ uptime: process.uptime(), memory: process.memoryUsage() });
});

HTTP('8008');

Hardware Interfacing Example:

// Serial COM Port
import { SerialPort } from 'techno4-total/serial';

// Web Audio API
import { AudioContext } from 'techno4-total/audio';

// MIDI Controllers
import easymidi from 'techno4-total/midi';

🛠 Command-Line Interface (CLI)

Available terminal binaries:

techno4-total [options]
t4-total [options]

📚 Official Documentation

Full guides and framework documentation:
👉 https://techno4.online/надбання/фреймворк

⚖️ License & Attribution

Distributed under the LGPL-3.0-or-later license.
Published and supported by CO «CF TECHNO4» (благодійна організація «БЛАГОДІЙНИЙ ФОНД ТЕХНО4»).
Author: Mykola Zghurskyi ([email protected]).
Contains derivatives of Total.js platform (MIT License).