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 🙏

© 2024 – Pkg Stats / Ryan Hefner

tfjs-node-lambda-helpers

v1.1.7

Published

Helpers for tfjs-node-lambda

Downloads

10

Readme

tfjs-node-lambda-helpers

When using tfjs-node-lambda, you have to deal with environments, release urls, releases, and timeouts. This package takes care of all of that for you.

Installation

npm install --save --save-exact tfjs-node-lambda tfjs-node-lambda-helpers
npm install --save-dev --save-exact @tensorflow/tfjs-node @tensorflow/tfjs

Related libraries

Usage

Please note that the lambda will return a 503 SERVICE_UNAVAILABLE error until tf is fully loaded to prevent errors from timing out. On the client, simply retry the request until the lambda is ready.

Tensorflow

import type { NextApiRequest, NextApiResponse } from 'next';
import { PrepareTf } from 'tfjs-node-lambda-helpers';
const prepareTf = PrepareTf();

export default async (req: NextApiRequest, res: NextApiResponse) => {
  const ready = await prepareTf.next();
  if (!ready.done) {
    return res.status(ready.value.statusCode).json(ready.value);
  }
  const tf = ready.value;

  tf.tensor([1, 2, 3, 4]).print();

  return res.status(200).json({ version: tf.version });
};

Lobe.ai

In Vercel’s dashboard, be sure Settings > Environment Variables > Automatically expose System Environment Variables is checked so that process.env.VERCEL_URL is not undefined.

import type { NextApiRequest, NextApiResponse } from 'next';
import axios from 'axios';
import { PrepareLobe, isLambda, LobeModel } from 'tfjs-node-lambda-helpers';

const baseUrl = isLambda()
  ? `https://${process.env.VERCEL_URL}`
  : `http://localhost:3000`;
const prepareLobe = PrepareLobe(`${baseUrl}/static/model`);

let model: LobeModel;

export default async (req: NextApiRequest, res: NextApiResponse) => {
  if (req.method !== 'POST') {
    return res.status(405).json({ message: 'Method Not Allowed' });
  }

  const lobe = await prepareLobe.next();
  if (!lobe.done) {
    return res.status(lobe.value.statusCode).json(lobe.value);
  } else {
    if (!model) {
      model = lobe.value;
    }
  }
  const imageUrl = req.body.imageUrl;

  const response = await axios.get(imageUrl, {
    responseType: 'arraybuffer',
  });
  const results = model.predict(response.data);

  return res.status(200).json({ results: results.Confidences });
};

Example

Checkout a full example at tfjs-node-lambda-example.

Behind the scenes

Our goals:

  • No configuration
  • Fast development experience
  • Prevent Lambda from timing out on initial load

Read the source code.

Contributing

We welcome contributions!

tfjs-node-lambda-releases is soft deprecated. Due to file size limitations, 6 releases are too big to be published on npm. Use the assets on GitHub Releases instead.