Step1: Get your Discord TokenJoin the Beta
{% content-ref url="broken-reference" %} Broken link {% endcontent-ref %}
{% content-ref url="broken-reference" %} Broken link {% endcontent-ref %}
{% content-ref url="install.md" %} install.md {% endcontent-ref %}
{% tabs %} {% tab title="Typescirpt" %} {% code overflow="wrap" lineNumbers="true" %}
import { Midjourney } from "midjourney";
const client = new Midjourney({
ServerId: "1082500871478329374",
ChannelId: "1094892992281718894",
SalaiToken: "your discord token",
Debug: true,
});
const msg = await client.Imagine(
"A little white elephant",
(uri: string, progress: string) => {
console.log("loading:", uri, "progress:", progress);
}
);
console.log({ msg });
{% endcode %} {% endtab %}
{% tab title="Javascirpt" %} {% code overflow="wrap" lineNumbers="true" %}
const { Midjourney } = require("midjourney");
const client = new Midjourney({
ServerId: "1082500871478329374",
ChannelId: "1094892992281718894",
SalaiToken: "your discord token",
Debug: true,
Ws:true,
});
const msg = await client.Imagine("A little pink elephant", (uri, progress) => {
console.log("loading:", uri, "progress:", progress);
});
console.log({ msg });
{% endcode %} {% endtab %} {% endtabs %}