mj-api-fork
v2.5.0
Published
Node.js client for the unofficial MidJourney API.
Downloads
3
Readme
midjourney-api
Node.js client for the unofficial MidJourney API.
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 msg = await client.Imagine("A little pink elephant", (uri: string) => {
console.log("loading", uri);
});
console.log({ msg });
Example
To run the included example, you must have Node.js installed. Then, run the following commands in the root directory of this project:
- clone the repository
git clone https://github.com/erictik/midjourney-api.git
cd midjourney-api
- install dependencies
yarn
# or npm
npm install
- set the environment variables How to get your Discord SALAI_TOKEN:
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
npx tsx example/upscale-ws.ts
npx tsx example/variation-ws.ts
route-map
- [x] websocket get message
- [x] call back error
- [ ] add
/info
/fast
and/relax