npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@llllvvuu/dl-webapp-sources

v0.1.8

Published

Create source code directory from a list of .js and .js.map URLs

Downloads

16

Readme

Download original source code from public sourcemaps

Get original JavaScript/TypeScript files/project layout:

dl-webapp-sources -o my-react-app \
  https://app.com/chunk1.js https://app.com/chunk2.js.map localChunk.js localMap.js.map ...
  • [x] sanitize output paths / pad relative parents
  • [x] .js arguments
  • [x] .js.map arguments
  • [x] URL arguments
  • [x] filename arguments
  • [x] sourceMappingURL=data:...
  • [x] sourceMappingURL=file:...
  • [x] sourceMappingURL=http...
  • [x] sourceMappingURL=<relativepath>
  • [x] guess sourceMappingURL by adding .map (find sources that Chrome misses)
  • [x] lookup from sourcesContent
  • [x] lookup from sources paths

Installation

npm install -g @llllvvuu/dl-webapp-sources

CLI Usage

Automated crawler may not pass auth, and it may also miss asynchronously loaded JS. But, you can get a list of loaded JS files by manually logging in.

After logging in, paste into the console:

performance
  .getEntriesByType("resource")
  .map(resource => resource.name)
  .filter(name => name.endsWith(".js"))
  .map(name => `"${name}"`)
  .join(" ")

This gives you the CLI args for:

dl-webapp-sources ${JS_URLS} -o ${OUTPUT_DIRECTORY}

If you got anything interesting, go back and click around the app to load all of the chunks (if it's a SPA), and repeat.

Now you can try to add some create-react-app or create-next-app boilerplate to try to get the app to build.

⚠️ Sometimes axios gets 403; I will try to fix this if I have time, but in the meantime you can get around this by manually downloading .js.map from the browser and passing the local filepath into the CLI.

⚠️ Some sites clear the performance timeline, so the performance API won't list all of the JS files. If this happens you can try another method to get the list of JS files.

Library Usage

See the API reference at markdown/dl-webapp-sources.md.

Motivation

I created this solution since neither denands/sourcemapper, tehryanx/sourcemapper, nor paazmaya/shuji accept a list of multiple JS files, which is quite common with chunked webapps.

jonluca/source-map-cloner is a solution for crawling an HTML page.

dl-webapp-sources leaves auth/crawling to the user. It accepts a list of .js or .js.map.

Sometimes it can find sources that Google Chrome misses.

Credits