Super Mario Maker Bookmark

Автор:

Super Mario Maker Bookmark is a website that lets you search for Super Mario Maker courses and creators, bookmark courses to play later in the Super Mario. For Super Mario Maker 2 on the Nintendo Switch, a GameFAQs message board topic titled 'The Super Mario Maker Bookmark Website (for searching courses by tag, etc.)'.

API for the Super Mario Maker Bookmark website

Installation (requires Node v8 or higher)

There are two ways you can install the API: Manually, Automatically (Release) & Automatically (Latest Commit)

  • Manual Installation Copy the mario-maker.js file to your project and require it using the path structure and the require function. While this allows you to keep a manual copy of the Super Mario Maker Bookmark Website API, you will no longer get automatic updates, and will have to manually install each update.
  • Automatic (Release) Run npm install super-maker-api in the Terminal.
  • Automatic (Latest Commit) Run npm install Samplasion/mario-maker in the Terminal.

Usage

In order to use the Super Mario Maker Bookmark Website API, you will need to require it in the JavaScript file. We recommend assigning a variable to it to avoid requiring the file over and over.

Tiger woods pga tour 13 courses list

Calling all cars sopranos. To get a course's information, you will need to have the course-ID available. As a workaround, you can use an SMM Level DB made by NightYoshi370 to search for courses via their name.

Once you have the course ID, you can then get the information by simply entering it as the first parameter to the variable you assigned above. Callbacks are also supported, the first argument being an error and the second argument being the level information. Of course, callbacks aren't mandatory and will return a promise if you do not provide one.

Example

Return value

The value returned will be the course data inside a JSON object. For example, here is the information for Castello aereo Infernale α/Ω made by Samplasion (if you'd like to give it a try, the course ID is 370D-0000-0253-A432)

User Object

The user object consists of the name, url and avatar (and their keys respectively). As an example, here's Samplasion's user object:

Credits

  • jacobjordan94 - Original developer
  • Samplasion - Making it function based, maintainer of the Github Repository
  • NightYoshi370 - Simplifying code, making callbacks optional, creating this ReadME