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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@kspcommunity/craft-file-reader

v1.0.7

Published

[![GitHub stars](https://img.shields.io/github/stars/kspcommunity/Craft-File-Reader?style=social)](https://github.com/kspcommunity/Craft-File-Reader/stargazers) [![GitHub forks](https://img.shields.io/github/forks/kspcommunity/Craft-File-Reader?style=soc

Downloads

16

Readme

Craft File Reader

GitHub stars GitHub forks GitHub watchers GitHub contributors

Welcome to Craft File Reader! This repository is part of the KSP Community organization on GitHub.

Overview

Craft File Reader is a tool for reading craft files used in the game Kerbal Space Program (KSP). It allows you to interact with craft files and extract useful information from them.

Installation

You can install Craft File Reader via npm:

npm install @kspcommunity/craft-file-reader

Usage

The processCraftFile function provided by Craft File Reader allows you to analyze Craft files. Here's how you can use it:

  1. Import the function into your Node.js script:

    const processCraftFile = require('@kspcommunity/craft-file-reader');
  2. Call the function with the path to the Craft file as an argument:

    const craftFilePath = '/path/to/your/craft_file.craft';
    const result = await processCraftFile(craftFilePath);

    The processCraftFile function returns a Promise, so it's recommended to use await or .then() to handle the result.

  3. Handle the result:

    If successful, the function returns an object containing details about the craft and its parts. If any error occurs during the process, it returns null.

    if (result) {
        console.log('Craft Details:', result.craftDetails);
        console.log('Parts Details:', result.partsDetails);
    } else {
        console.error('Error processing the craft file.');
    }

Interact with Mod Parts Data

Craft File Reader can be used to interact with the data provided by Mod Parts Lister. Use both tools together for enhanced functionality.

Acknowledgements

We would like to express our gratitude to Curseforge and Spacedock for their invaluable resources and support, without which this project would not have been possible.

Disclaimer

KSP Community is an independent entity and is not affiliated with Curseforge, Spacedock, or Intercept Games.

Additional Information

For more information about KSP Community, please visit our main website. Our Privacy Policy and Terms of Service are available on our website.

If you need further assistance or have any questions, feel free to reach out to us at [email protected].

Join our Discord server: https://discord.gg/YCZ5YhQQ8A