Giter Site home page Giter Site logo

node-vpk's Introduction

node-vpk

extractor and creator for the Valve Pack Format

Prerequisites

Requires fs-extra, jBinary and crc, but npm will install them automatically if you follow my instructions

Installing

globally

npm install -g vpk

or locally

npm install vpk

(Those will also install dependencies, no need to worry about them)

How to use

To extract a V1/V2 VPK:

const {VPK} = require("node-vpk");

// load a vpk (V1/V2) (ALWAYS select the _dir file)
var my_vpk = new VPK("C:/Programs("C:/Program Files (x86)/Steam/steamapps/common/dota 2 beta/game/dota/pak01_dir");
my_vpk.load();

// extract it
my_vpk.extract("C:/Users/Public/Desktop/pak01_dir");

To create a V1 vpk (V2 coming soon):

const {VPKcreator} = require("node-vpk");

// load a directory
var my_vpk = new VPKcreator("C:/Users/Public/Desktop/pak01_dir");
my_vpk.load();

// save it as .vpk
my_vpk.save("C:/Users/Public/Desktop/my_created_vpk.vpk");

node-vpk's People

Contributors

thesupremecommander avatar andreamatt avatar pukmajster avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.