1.4.1 • Published 6 years ago
@b1tt/ng-fetch v1.4.1
ng-fetch
ng-fetch is a lightweight and fast Newgrounds wrapper.
You can use it by writing const ng = require("@b1tt/ng-fetch"); // Const name can be changed preferably.
With ng-fetch, you can:
- Songs
- Fetch songs
- Search songs
- Fetch users
- Browse the frontpage
- Art
- Fetch art
- Search art
- Portal
- Games
- Search games
- Movies
- Search movies
- Fetch games / movies
- Games
And even more on the way! All that is returned in a nice JSON object.
Song fetching
// const song = ng.song.fetch(id)
const song = ng.song.fetch(1); // Fetches songs with tag / name "b1tt"
.then (data => console.log(data)); // and logs it into the console!
// It has to be promise so it won't return { Promise <Pending> }.
// Head over to /commands/song/fetch.js to see what it returns!
User fetching
// const user = ng.user.fetch(username)
const user = ng.user.fetch("bitt0"); // Fetches my profile :^)
.then (data => console.log(data)); // and logs it into the console!
// Head over to /commands/users/fetch.js to see what it returns!
If you want to see more commands and what they return - go to /commands/