1.1.14 • Published 12 months ago

kmidjourney v1.1.14

Weekly downloads
-
License
ISC
Repository
github
Last release
12 months ago

midjourney-api

Node.js client for the unofficial MidJourney API.

discord bot example

web ui example

Install

npm

npm i midjourney

yarn

yarn add midjourney

Usage

import { Midjourney } from "midjourney";
const client = new Midjourney(
  process.env.SERVER_ID,
  process.env.CHANNEL_ID,
  process.env.SALAI_TOKEN
);
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:

  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 How to get your Discord SALAI_TOKEN:
export SERVER_ID="108250087147832934"
export CHANNEL_ID="109489299228171884"
export SALAI_TOKEN="your-salai-token"

Then, run the example with the following command:

npx tsx example/imagine.ts
npx tsx example/upscale.ts
npx tsx example/variation.ts
1.1.14

12 months ago

1.1.13

12 months ago

1.1.12

12 months ago

1.1.11

12 months ago

1.1.10

12 months ago

1.1.9

12 months ago

1.1.8

12 months ago

1.1.7

12 months ago

1.1.6

12 months ago

1.1.5

12 months ago

1.1.4

12 months ago

1.1.3

12 months ago

1.1.2

12 months ago

1.1.1

12 months ago

1.1.0

12 months ago