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

get-movie-ost

v1.0.5

Published

Find the soundtrack authors and tracklist of your favorite movies directly from a local JSON database.

Readme

🎬 movie-ost-finder

Find the soundtrack authors and tracklist of your favorite movies directly from a local JSON database.


🚀 Installation

npm install -g movie-ost-finder

or, if you want to use it without installing globally:

npx movie-ost-finder

🧠 How it works

This tool asks for a movie name, looks it up inside a local movies.json file, and prints out the soundtrack authors and tracklist.

It uses:

  • readline for CLI input
  • fs/promises for reading the JSON file
  • speakingurl for slug normalization (to match titles even if the user types extra spaces or different capitalization)

🧩 Example JSON file

Your movies.json should look like this:

{
  "films": [
    {
      "film_name": "Akira",
      "soundtrack_authors": ["Geinoh Yamashirogumi"],
      "tracks": [
        "Kaneda",
        "Battle Against Clown",
        "Tetsuo",
        "Shohmyoh",
        "Exodus from the Underground Fortress"
      ]
    },
    {
      "film_name": "Profondo Rosso",
      "soundtrack_authors": ["Goblin", "Giorgio Gaslini"],
      "tracks": [
        "Profondo Rosso (Main Theme)",
        "Mad Puppet",
        "Death Dies",
        "Deep Shadows"
      ]
    }
  ]
}

💻 Usage

Run the script:

node src/index.js

Or, if you published it globally:

movie-ost-finder

Then type the movie name when prompted:

Tell me the name of a movie: Akira
🎼 Authors: Geinoh Yamashirogumi
🎵 Tracklist:
1. Kaneda
2. Battle Against Clown
3. Tetsuo
4. Shohmyoh
5. Exodus from the Underground Fortress

⚙️ Project structure

movie-ost-finder/
├── src/
│   └── index.js
├── movies.json
├── package.json
└── README.md

📦 Exports

findOst()

Main async function that:

  1. Prompts the user for a movie name
  2. Normalizes the title using getSlug
  3. Reads the local JSON file
  4. Finds the corresponding movie
  5. Prints the soundtrack authors and tracklist to the console

🧰 Dependencies

| Package | Description | |----------|-------------| | speakingurl | Converts movie titles into comparable slugs | | fs/promises | Reads JSON file asynchronously | | readline | Handles CLI input/output |


🪪 License

MIT © 2025 Madda