Coder Social home page Coder Social logo

rostrage / node_usvfs Goto Github PK

View Code? Open in Web Editor NEW

This project forked from stormymcstorm/node_usvfs

0.0 1.0 0.0 215 KB

Node.js bindings for User Space Virtual File System (USVFS)

License: MIT License

Python 19.10% JavaScript 29.93% C++ 50.97%

node_usvfs's Introduction

node_usvfs

Node.js bindings for User Space Virtual File System (USVFS).

This only works on 64-bit Windows 10

Install

npm install @stormymcstorm/node_usvfs -S

WARNING: if this there is not already a prebuilt binary for your system this module will take a long time to compile and will require a lot of space

Usage

const USVFS = require('@stormymcstorm/node_usvfs');
const path = require('path');

const vfs = new USVFS('node');

// create a virtual link between directories
vfs.linkDirectoryStatic(path.resolve('example/s'), path.resolve('example/d'));

// notepad will have access to the virtual file system
vfs.spawn('notepad.exe', () => {
	console.log('done');
});

Documentation

clearMappings()

vfs.clearMappings();

The clear mappings method will clear all virtual links

linkFile(string src, string dest)

Creates a virtual link to the file

const wasLinked = vfs.linkFile(pathTosrc, pathToDest);
  • string src the source file to link. Must be a absolute path
  • string dest the destination for the link

Returns a boolean indicating whether or not the file was successfuly linked

linkDirectoryStatic(string src, string dest)

Creates virtual links for all the files in the directory

const wasLinked = vfs.linkDirectoryStatic(pathTosrc, pathToDest);
  • string src the source directory to link. Must be a absolute path
  • string dest the destination for the link

Returns a boolean indicating whether or not the directory was successfuly linked

disconnect()

disconnects from the current vfs

vfs.disconnect();

spawnSync(string command)

Spawns the given command and blocks until the process exits

vfs.spawnSync('notepad.exe');
  • string command the command to spawn

spawn(string command, [function callback])

Spawns the given command asynchronously

vfs.spawn('notepad.exe', () => console.log('done'));
  • string command the command to spawn
  • [function callback] a optional callback to be called when the process exits

Requirements

Operating System

Windows 10 64-bit

Software

Windows build tools

node-gyp requires windows-build-tools to run

Visual Studio 2017

USVFS requires Visual Studio 2017 to compile.

  • Workloads
    • Desktop development with C++
  • Individual components
    • Windows 10 SDK (10.0.16299.0) for Desktop C++ [x86 and x64]

TODO

  • allow for relative paths
  • support 32 bit windows
  • add support for creating multiple virtual file systems

License

MIT

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.