Git Product home page Git Product logo

thinpm's Introduction

thinpm

Static download and packaging of types from popular npm packages

Usage

  1. Run node dist/main.js <packages...>
  2. Put the generated JSON file from generated/output.json somewhere you can consume it.

Consumption

  1. Load output.json
  2. Loop over files in output.packages["YOUR-PACKAGE"]
  3. For each file, write it to the place you'd normally expect node_modules to be:
for (const f of output.packages["YOUR-PACKAGE"]) {
    console.log(dirname(f))
    fs.mkdirSync('project/node_modules/' + dirname(f), { recursive: true })
    fs.writeFileSync(project/node_modules/' + f, output.files[f])
}

See src/demo.js for a full example.

Implementation

  1. Run npm install for all requested packages and the @types/ equivalent.
  2. For all .ts files in node_modules, map path to file contents.
  3. For each directory in node_modules, follow entries in dependencies, adding files from each package along the way.

(3) is incomplete and buggy but enough to create a demo; there are probably ways to make (2) save a smaller set of files.

thinpm's People

Contributors

sandersn avatar

Watchers

 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.