1.0.7 • Published 1 month ago

@kspcommunity/craft-file-reader v1.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

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 info@kspcommunity.com.

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

1.0.7

1 month ago

1.0.6

1 month ago

1.0.5

1 month ago

1.0.4

1 month ago

1.0.3

1 month ago

1.0.2

1 month ago

1.0.1

1 month ago

1.0.0

1 month ago