Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 1.0KB

12345678910111213141516171819202122232425262728293031
  1. # Node.js releases data
  2. All data is located in `data` directory.
  3. `data/raw` contains raw data `nodejs.json` and `iojs.json`.
  4. `data/processed` contains `envs.js` with both node.js and io.js data preprocessed to be used by [browserlist](https://github.com/ai/browserslist) and other projects. Each version in this file contains only necessary info: version, release date and optionally LTS flag.
  5. ## Installation
  6. ```bash
  7. npm install --save node-releases
  8. ```
  9. ## Updating data
  10. ```bash
  11. npm run build
  12. ```
  13. This is a build script which fetches data from web, processes it and saves processed data to `data/processed/envs.json`. If you want to run this steps separately you can use commands described below.
  14. ### Fetching data
  15. ```bash
  16. npm run fetch
  17. ```
  18. This npm script will download new data to `data/raw` directory. Also it'll download Node.js release schedule into `release-schedule` folder.
  19. ### Processing data
  20. ```bash
  21. npm run process
  22. ```
  23. This script generates `envs.json` file from raw data files and saves it to `data/processed` directory.