Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kjirou/application-js-explorer
Look for an url of application.js from Rails server
https://github.com/kjirou/application-js-explorer
nodejs npm rails sprockets
Last synced: 12 days ago
JSON representation
Look for an url of application.js from Rails server
- Host: GitHub
- URL: https://github.com/kjirou/application-js-explorer
- Owner: kjirou
- Created: 2017-03-10T10:15:37.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-08-31T07:47:01.000Z (about 3 years ago)
- Last Synced: 2024-10-19T22:49:36.052Z (19 days ago)
- Topics: nodejs, npm, rails, sprockets
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# application-js-explorer
[![npm version](https://badge.fury.io/js/application-js-explorer.svg)](https://badge.fury.io/js/application-js-explorer)
Look for an url of application.js from Rails server
## Installation
```bash
npm install explore-application-js
```## Usage
It is used to find the url of `application.js` which is unknown due to the digest.
```bash
explore-application-js https://anywhere-rails-app.com
https://anywhere-rails-app.com/assets/application-83299254db085bb3c9756256845a354db5375e393f4293abf1fa20b48e80af07.js
```Even without digest you can get it.
```bash
explore-application-js https://anywhere-rails-app.com
https://anywhere-rails-app.com/assets/application.js
```If not found, it is empty.
```bash
explore-application-js https://anywhere-not-rails-app.com```