Git Product home page Git Product logo

midjourney-api-node-open's Introduction

midjourney-api

Node.js client for the unofficial MidJourney api.

Discord server npm version

What's new

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.Connect();
const Imagine = await client.Imagine(
  "A little pink elephant",
  (uri: string, progress: string) => {
    console.log("Imagine", uri, "progress", progress);
  }
);
console.log({ Imagine });

const Variation = await client.Variation({
  index: 2,
  msgId: <string>Imagine.id,
  hash: <string>Imagine.hash,
  flags: Imagine.flags,
  loading: (uri: string, progress: string) => {
    console.log("Variation.loading", uri, "progress", progress);
  },
});
console.log({ Variation });
const Upscale = await client.Upscale({
  index: 2,
  msgId: <string>Variation.id,
  hash: <string>Variation.hash,
  flags: Variation.flags,
  loading: (uri: string, progress: string) => {
    console.log("Upscale.loading", 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-discord-token"

Then, run the example with the following command:

npx tsx example/imagine-ws.ts

route-map


Projects


Support

If you find it valuable and would like to show your support, any donations would be greatly appreciated. Your contribution helps me maintain and improve the program.

   Buy Me a Coffee

Star History

Star History Chart

midjourney-api-node-open's People

Contributors

zcpua avatar 1395173231 avatar artemptushkin avatar jakowenko avatar happyvee avatar estebanrestoy avatar iamkunal9 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.