JSPM

  • Created
  • Published
  • Downloads 1356
  • Score
    100M100P100Q125079F
  • License ISC

Node.js client for the unofficial MidJourney API.

Package Exports

  • midjourney
  • midjourney/libs/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (midjourney) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

midjourney-client

Node.js client for the unofficial MidJourney api.

Discord server npm version

discord-bot web-ui

Proxy agent not supported. The edge runtime does not support Node.js 'http' module.

Install

npm i midjourney
# or
yarn add midjourney

Usage

import { Midjourney } from "midjourney";
  const client = new Midjourney({
    ServerId: <string>process.env.SERVER_ID,
    ChannelId: <string>process.env.CHANNEL_ID,
    SalaiToken: <string>process.env.SALAI_TOKEN,
    Debug: true,
    Ws:true,
  });
  await client.init();
  const Imagine = await client.Imagine("A little pink elephant", (uri: string, progress:string) => {
   onsole.log("Imagine", uri, "progress", progress);
  });
  console.log({ Imagine });

  const Variation = await client.Variation(
    Imagine.content,
    2,
    <string>Imagine.id,
    <string>Imagine.hash,
    (uri: string, progress:string) => {
     onsole.log("Imagine", uri, "progress", progress);
    }
  );
  console.log({ Variation });
  const Upscale = await client.Upscale(
    Variation.content,
    2,
    <string>Variation.id,
    <string>Variation.hash,
    (uri: string, progress: string) => {
      console.log("Upscale", uri, "progress", progress);
    }
  );
  console.log({ Upscale });

Example

To run the included example, you must have Node.js installed. Then, run the following commands in the root directory of this project:

  1. clone the repository
git clone https://github.com/erictik/midjourney-api.git
cd midjourney-api
  1. install dependencies
yarn
# or npm
npm install
  1. set the environment variables
#example variables, please set up yours

export SERVER_ID="1082500871478329374"
export CHANNEL_ID="1094892992281718894"
export SALAI_TOKEN="your-salai-token"

Then, run the example with the following command:

npx tsx example/imagine-ws.ts

route-map

  • /imagine variation upscale
  • websocket get message
  • call back error
  • verify human
  • /info
  • /fast api and /relax api
  • /describe

Buy Me a Coffee

Star History

Star History Chart