Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cablej/FileChangeMonitor
Continuous monitoring for JavaScript files
https://github.com/cablej/FileChangeMonitor
Last synced: 21 days ago
JSON representation
Continuous monitoring for JavaScript files
- Host: GitHub
- URL: https://github.com/cablej/FileChangeMonitor
- Owner: cablej
- Created: 2017-12-03T03:14:35.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-12-29T19:50:23.000Z (almost 5 years ago)
- Last Synced: 2024-08-05T17:28:46.773Z (4 months ago)
- Language: JavaScript
- Homepage: https://filechangemonitor.io
- Size: 3.12 MB
- Stars: 216
- Watchers: 5
- Forks: 38
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - cablej/FileChangeMonitor - Continuous monitoring for JavaScript files (JavaScript)
README
# File Change Monitor
### Never miss a feature update again
File Change Monitor detects changes in JavaScript files, notifying you when new API endpoints are added. This way, you can stay on top of latest changes across the web.
## Hosted Version
For convenience, a hosted version is available at https://filechangemonitor.io.
## Usage
After creating an account, you may add domains to monitor. Start by entering the base domain of a website. From here, File Change Monitor will scrape the site for JavaScript files and automatically begin monitoring files that have interesting content. File Change Monitor also checks for updates in filenames of dynamically-named files (i.e. `application-198a3ef8943.js`).
## Installation
1. Download the repository
2. Install npm modules: `npm install`
3. Install bower dependencies `bower install`
4. Start up the server: `node server.js`
5. View in browser at http://localhost:3000## Installing MongoDB
See https://docs.mongodb.com/manual/installation/.
## Configuration
Copy `.env.example` into `.env`:
`cp .env.example .env`
Then, configure the following environment variables:
- Generate a JWT token secret and set it as the `TOKEN_SECRET` value
- Set `MONGO_URI` to the uri of your MongoDB database
- Set `SENDGRID_KEY` to your Sendgrid API key
- Configure AWS secrets (for s3 storage)