![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
osu-wrapper
Advanced tools
An easy wrapper for osu API and support intellisense.
#npm
npm install osu-wrapper
#yarn
yarn add osu-wrapper
const { Osu } = require("osu-wrapper");
const client = new Osu("ur_token");
async function user() {
const result = await client.getUser({ u: "ivoskydeav", m: "3" });
console.log(result);
return result;
}
user()
const { Osu } = require("osu-wrapper");
const client = new Osu("ur_token");
async function getBeatmaps() {
const result = await client.getBeatmaps({ b: 309176 });
console.log(result);
return result;
}
getBeatmaps()
For more information go to documentation
Actually i don't know how to write the documentation, but i hope you will understand and if you have any question feel free to join my Discord Server
© Aizuu
FAQs
An easy wrapper for osu API and support intellisense.
We found that osu-wrapper demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.