Get Anime wallpapers based on scrapping from websites.
Website | Type | Status |
---|---|---|
Hqdwalls [NEW] | Image | ✔ |
Wall Haven | Image | ✔ |
ZeroChan | Image | ✔ |
Wallpapers.com | Image | ✔ |
Hoyolab | Image | ✔ |
Image | ✔ | |
Moe Walls [NEW] | Video/Image | ✔ |
npm install anime-wallpaper
or
yarn add anime-wallpaper
At the head of your file, start by importing the necessary classes
const { AnimeWallpaper, AnimeSource } = require('anime-wallpaper');
const wallpaper = new AnimeWallpaper();
const wallpaper = await wallpaper.random({ resolution: "1920x1080" });
return console.log(wallpaper)
const wallpaper = await wall.search({ title: "firefly honkai", page: 1, type: "sfw", aiArt: true }, AnimeSource.WallHaven);
return console.log(wallpaper)
const wallpaper = await wallpaper.search({ title: "Keqing" }, AnimeSource.Wallpapers);
return console.log(wallpaper)
const wallpaper = await wallpaper.search({ title: "Misaka Mikoto" }, AnimeSource.ZeroChan);
return console.log(wallpaper)
const wallpaper = await wallpaper.live2d("Jane Doe");
return console.log(wallpaper)
const wallpaper = await wall.hoyolab({ game: "GenshinImpact", postType: "Trending" });
return console.log(wallpaper)
{
data: {
list: [
{
game: {...},
post: {...},
topics: [{...}]
user: {...}
}
]
}
}
const wallpaper = await wall.pinterest("Ellen Joe ZzZ");
return console.log(wallpaper)
In some rare cases, the fetching process might fail due to inconsistencies when scraping websites.
Fork then clone the project and install its dependencies:
npm i
In the root folder of the project type the following to compile the .ts into .js
tsc
© Aizuu