Giter Site home page Giter Site logo

mysticaltech / js-source-extractor Goto Github PK

View Code? Open in Web Editor NEW

This project forked from unblu/js-source-extractor

0.0 1.0 0.0 78 KB

Extracts source from javascript frameworks with sourcemap information (containing the source)

License: ISC License

TypeScript 100.00%

js-source-extractor's Introduction

JS Source Extractor

An extractor of source code from Javascript libraries containing source maps with embedded or referenced source.

Build Status NPM version

Install for CLI use

$ npm install -g js-source-extractor

Example CLI use

$ cd /tmp
$ js-source-extractor https://raw.githubusercontent.com/unblu/js-source-extractor/master/resources/embedded-sourcemap-test.js
Loading resource https://raw.githubusercontent.com/unblu/js-source-extractor/master/resources/embedded-sourcemap-test.js to examine (expecting javascript or source map)
Resource will be treated as a Javascript
Reading contents of https://raw.githubusercontent.com/unblu/js-source-extractor/master/resources/embedded-sourcemap-test.js
source map response complete
Found source map url
Extracting embedded source map
Source map references 1 source files
Source /tmp/extract/src/embedded-sourcemap-test.ts written

To extract files to a specific folder, use --outDir like:

$ js-source-extractor https://raw.githubusercontent.com/unblu/js-source-extractor/master/resources/embedded-sourcemap-test.js --outDir /tmp/extract
Loading resource https://raw.githubusercontent.com/unblu/js-source-extractor/master/resources/embedded-sourcemap-test.js to examine (expecting javascript or source map)
Resource will be treated as a Javascript
Reading contents of https://raw.githubusercontent.com/unblu/js-source-extractor/master/resources/embedded-sourcemap-test.js
source map response complete
Found source map url
Extracting embedded source map
Source map references 1 source files
Source /tmp/extract/src/embedded-sourcemap-test.ts written

If you have a source map on your file system already, use file:// protocol like:

$ cd /tmp
$ wget https://raw.githubusercontent.com/unblu/js-source-extractor/master/resources/embedded-sourcemap-test.js
$ js-source-extractor file:///tmp/embedded-sourcemap-test.js 
  Loading resource file:///tmp/embedded-sourcemap-test.js to examine (expecting javascript or source map)
  Resource will be treated as a Javascript
  Reading contents of file:///tmp/embedded-sourcemap-test.js
  Found source map url
  Extracting embedded source map
  Source map references 1 source files
  Source /tmp/extract/src/embedded-sourcemap-test.ts written

Help output from the CLI

$ js-source-extractor.js --help
  
    Usage: js-source-extractor [options] <resourceUrl>
  
    Extracts source from javascript frameworks with sourcemap information (containing the source)
  
    Options:
  
      -v, --version                   output the version number
      -o, --outDir <outDir>           Base output directory where source files should be output to
      -i, --include <includePattern>  Include pattern to apply when selecting source files for extraction
      -e, --exclude <excludePattern>  Exclude pattern to apply when selecting source files for extraction (executed after include pattern)
      -h, --help                      output usage information

Install as node module to use in your own project

$ npm install --save-dev js-source-extractor

To extract source code from a sourcemap embedded in a javascript and call a callback per source file, use:

import { URL } from "url";
import { extractSrc } from 'js-source-extractor'

extractSrc(new URL('https://raw.githubusercontent.com/unblu/js-source-extractor/master/resources/embedded-sourcemap-test.js'), null, (path: string, sourceName: string, source: string | null) => {
    console.log("Path: " + path);              // '/src'
    console.log("SourceName: " + sourceName);  // '/embedded-sourcemap-test.ts'
    console.log("Source: " + source);          // 'console.log(\'Hello World!\');'
});

To extract code from a sourcemap embedded in a javascript and write the source files to the disk, use:

import { tmpdir } from "os";
import { URL } from "url";
import { extractSrcToDir } from 'js-source-extractor'

const outDir = tmpdir() + '/js-source-extractor-test'; // directory to store source files in
await extractSrcToDir(new URL('https://raw.githubusercontent.com/unblu/js-source-extractor/master/resources/embedded-sourcemap-test.js'), null, outDir);

Running the tests

JS Source Extractor features a number of mocha tests to verify the various API functionalities.

To start the tests, use:

$ npm test

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the ISC License

Copyright (c) 2018, Kay Huber, unblu inc.

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Acknowledgments

  • Thanks Dave for your encouragement to create this tiny tool

js-source-extractor's People

Contributors

csalazar avatar kayhuba 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.