npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

coaster.js

v0.0.15

Published

Javascript library for fetching data from https://coaster.cloud

Downloads

10

Readme

Coaster.Cloud Javascript SDK (Legacy / Unsupported)

UNSUPPORTED: This library is not used anymore. The legacy REST API is removed for the new and more flexible Open Coaster Interface. This library is only for historical reasons public but don't work anymore.

Please use Open Coaster Interface for fetching parks and attractions data.

~~This is a javascript library for fetching attraction and themepark data from the official coaster.cloud api.~~

npm version Coverage Status

Installation

yarn add coaster.js
npm install coaster.js

Usage

Some short examples for fetching data.

Fetching parks from germany

const capi = require("coaster.js");

let config = {
    filters: [
        'address.country.name:"germany"'
    ]
};

capi.getParks(config).then(function (response) {
    if (response !== null) {
        response.data.forEach(function (park) {
          console.log(park.name);
      });
    }
});

Fetch "Movie Park Germany" for german language

You can use the "language" param for every GET request for fetching results in given language. Look at https://api.coaster.cloud which languages are supported.

const capi = require("coaster.js");

// That's the id of movie park at coaster.cloud
// Every park and attraction has an unique id
let parkUuid = 'a5fb81f1-cc4e-4a7e-8419-98cc523487e3';

let config = {
    language: 'de'
};

capi.getPark(parkUuid, config).then(function (response) {
    if (response !== null) {
        console.log(response.data.name);
    }
});

Instead of setting the language for each request, you can change the default language property:

const capi = require("coaster.js");
capi.language = 'de';

// That's the id of movie park at coaster.cloud
// Every park and attraction has an unique id
let parkUuid = 'a5fb81f1-cc4e-4a7e-8419-98cc523487e3';

capi.getPark(parkUuid).then(function (response) {
    if (response !== null) {
        console.log(response.data.name);
    }
});

Fetching attractions from "Movie Park Germany"

const capi = require("coaster.js");

// That's the id of movie park at coaster.cloud
// Every park and attraction has an unique id
let parkUuid = 'a5fb81f1-cc4e-4a7e-8419-98cc523487e3';

let config = {
    park: parkUuid
};

capi.getAttractions(config).then(function (response) {
    if (response !== null) {
        response.data.forEach(function (attraction) {
          console.log(attraction.name);
      });
    }
});

Fetching waiting times from "Efteling"

const capi = require("coaster.js");

// That's the id of efteling at coaster.cloud
// Every park and attraction has an unique id
let parkUuid = '49f00560-9b8d-4c11-a3ed-f548192ef5d9';

capi.getWaitingTimes(parkUuid).then(function (response) {
    if (response !== null) {
        response.data.forEach(function (attraction) {
          console.log(attraction.name);
      });
    }
});