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

muapi-js

v1.0.0

Published

Official JavaScript SDK for MuAPI

Readme

<<<<<<< HEAD

MuAPI JavaScript SDK

Official JavaScript SDK for MuAPI.

Generate images, videos, audio, edit media, upload files, track predictions, and access MuAPI models directly from Node.js applications.


Installation

npm install muapi-js

Authentication

import { MuAPI } from "muapi-js";

const client = new MuAPI("YOUR_API_KEY");

Quick Start

Generate an Image

import { MuAPI } from "muapi-js";

const client = new MuAPI("YOUR_API_KEY");

const result = await client.images.generate({
  prompt: "A futuristic city at sunset",
  model: "flux-dev",
});

console.log(result);

Edit an Image

const result = await client.images.edit({
  prompt: "Turn this image into anime style",
  image: "https://example.com/image.jpg",
  model: "flux-kontext-dev",
});

console.log(result);

Generate a Video

const result = await client.videos.generate({
  prompt: "A cinematic drone shot over mountains",
  model: "kling-master",
});

console.log(result);

Image to Video

const result = await client.videos.fromImage({
  prompt: "The subject smiles and waves",
  image: "https://example.com/image.jpg",
  model: "kling-master",
});

console.log(result);

Generate Audio

const result = await client.audio.fromText({
  prompt: "Relaxing ocean waves",
  duration: 10,
});

console.log(result);

Upload Files

const upload = await client.uploads.upload(
  "./image.jpg"
);

console.log(upload);

Track Predictions

const image = await client.images.generate({
  prompt: "A futuristic city",
});

const result = await client.predictions.wait(
  image.request_id || image.id
);

console.log(result);

Models API

List Categories

console.log(
  client.models.categories()
);

Get Model Details

console.log(
  client.models.get("flux-dev")
);

Account API

const balance =
  await client.account.balance();

console.log(balance);

Error Handling

import {
  MuAPI,
  MuAPIError
} from "muapi-js";

try {
  await client.images.generate({
    prompt: "test"
  });
} catch (error) {
  if (error instanceof MuAPIError) {
    console.log(error.status);
    console.log(error.message);
  }
}

Examples

examples/
├── image-generate.js
├── image-edit.js
├── video-generate.js
├── image-to-video.js
├── audio-generate.js
├── upload-file.js
├── prediction-test.js
├── models-list.js
└── account-balance.js

Features

  • Image Generation
  • Image Editing
  • Video Generation
  • Image-to-Video
  • Audio Generation
  • File Uploads
  • Prediction Polling
  • Model Discovery
  • Account Management
  • Custom Error Handling

License

MIT

muapi-javascript

Javascript sdk for Muapi