
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Simple Node.js N-API module that wraps few pieces of pytorch C++ library (libtorch) to allow loading and running pytorch-trained models in Node.js.
Node.js non-blocking model is great for scheduling heavy computational tasks such as NN inference. This wrapper provides async methods that do not block event loop, so it's possible to use it in a web-service.
This module was made just for fun, to check if it's easily possible to create image style transfer app with Node.js.
With npm: npm i --save libtorchjs
Module binary is pre-built and published using node-pre-gyp
so it's not required to download libtorch/pytorch
or install build tools.
Currently, Linux & Windows builds are available.
const torch = require('libtorchjs');
const input = torch.randn([1, 3, 224, 224]);
torch.load('model.pt', function(err, model) {
model.forward(input, function(err, result) {
const output = result.toUint8Array();
console.log(output);
});
});
The overall goal is to mirror pytorch API where possible. Currently just a few methods are exposed.
Create tensor of specified shape filled with 1's (autograd is disabled) and return Tensor object.
Create tensor of specified shape (autograd is disabled) filled with random values in (0..1) range.
Load traced model async from file and return resulting ScripModule.
Forward tensor async and return resulting Tensor.
Following resources were extremely useful for creating this module:
FAQs
Node.js N-API wrapper for Libtorch
The npm package libtorchjs receives a total of 12 weekly downloads. As such, libtorchjs popularity was classified as not popular.
We found that libtorchjs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.