Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@etothepii/satisfactory-file-parser

Package Overview
Dependencies
Maintainers
1
Versions
86
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@etothepii/satisfactory-file-parser

A file parser for satisfactory files. Includes save files and blueprint files.

  • 0.0.13
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.6K
increased by994.37%
Maintainers
1
Weekly downloads
 
Created
Source

Satisfactory File Parser

This is an NPM TypeScript Module to parse Satisfactory Files. Satisfactory is a game released by Coffee Stain Studios.

The Module is written entirely in TypeScript and comes with Type Definitions.

This parser can read, modify and write:

  • Save Files .sav
  • Blueprint Files .sbp, .sbpcfg

Supported Versions

Game Version Files of U5 and below are NOT supported. However, U6 and above is perfectly fine and parsable.

  • ✅ U7
  • ✅ U6
  • ❌ <= U5

U8 is on the Horizon!

We can not promise that U8 saves will work out of the box! If there will be changes, those will come very soon as soon as U8 is out on Experimental.

Installation via npm

npm install @etothepii/satisfactory-file-parser

Usage

Usage of the SaveParser is easy. For reading a save file, just pass a Buffer to it.

import { SaveParser } from "@etothepii/satisfactory-file-parser";

const file = fs.readFileSync('./MySave.sav') as Buffer;
const parsedSave = SaveParser.ParseSaveFile(file);

Consequently, writing a parsed save file back is just as easy.

import { SaveParser } from "@etothepii/satisfactory-file-parser";

SaveParser.WriteSave(parsedSave);

License

MIT

The module's code is free to use and open source.

Keywords

FAQs

Package last updated on 26 Mar 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc