stable-diffusion-cjs
v2.0.1
Published
This is a CJS version of [this](https://www.npmjs.com/package/stable-diffusion-es) ES module for [Node.js](https://nodejs.org/en/) that provides uses Stable Diffusion to generate images from a given prompt using AI.
Maintainers
Readme
stable-diffusion-cjs
This is a CJS version of this ES module for Node.js that provides uses Stable Diffusion to generate images from a given prompt using AI.
Installation
npm install stable-diffusion-cjsUsage
const { generate } = require('stable-diffusion-cjs');
const fs = require('fs');
const prompt = "A cat";
generate(prompt)
.then((response) => {
if (response.error) {
console.log("There was an error generating the image.");
} else {
const filePath = './image.jpg';
fs.writeFileSync(filePath, response);
console.log("Image generated successfully!");
console.log(`Image saved at: ${filePath}`);
}
})
.catch((error) => {
console.error('Error:', error);
});
A trick to get better images is to add:
{enhanced}at the end of your prompt.
Output

