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

fxnjs

Package Overview
Dependencies
Maintainers
0
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fxnjs

Run AI prediction functions in your JavaScript and Node.js apps.

  • 0.0.43
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
15
decreased by-75%
Maintainers
0
Weekly downloads
 
Created
Source

Function for JavaScript

function logo

Dynamic JSON Badge

Run Python functions (a.k.a "predictors") locally in the browser and Node.js, with full GPU acceleration and zero dependencies.

[!TIP] Join our waitlist to bring your custom Python functions and run them on-device across Android, iOS, macOS, Linux, web, and Windows.

[!CAUTION] Never embed access keys client-side (i.e. in the browser). Instead, create a proxy URL in your backend.

Installing Function

Function is distributed on NPM. Open a terminal and run the following command:

# Run this in Terminal
$ npm install fxnjs

Retrieving your Access Key

Head over to fxn.ai to create an account by logging in. Once you do, generate an access key:

generate access key

Making a Prediction

First, create a Function client, specifying your access key:

import { Function } from "fxnjs"

// Create a Function client
const fxn = new Function({ accessKey: "<ACCESS KEY>" });

Then make a prediction:

// Make a prediction
const prediction = await fxn.predictions.create({
    tag: "@fxn/greeting",
    inputs: { name: "Rhea" }
});

// Log the result
console.log(prediction.results[0]);

Function is a product of NatML Inc.

Keywords

FAQs

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