Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andrew--r/frontendbookshelf-data
Данные для «Книжной полки фронтендера»
https://github.com/andrew--r/frontendbookshelf-data
Last synced: about 6 hours ago
JSON representation
Данные для «Книжной полки фронтендера»
- Host: GitHub
- URL: https://github.com/andrew--r/frontendbookshelf-data
- Owner: andrew--r
- License: mit
- Created: 2017-02-22T23:13:45.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-05-01T19:50:02.000Z (over 7 years ago)
- Last Synced: 2024-09-18T23:14:06.945Z (2 months ago)
- Language: JavaScript
- Size: 36.8 MB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/andrew--r/frontendbookshelf-data.svg?branch=master)](https://travis-ci.org/andrew--r/frontendbookshelf-data)
# Frontend Bookshelf data
```bash
$ yarn # install dependencies
```## CMS
Here are a few handy CLI programs for managing data:
* `./cms/list-books.js`
* `./cms/list-tags.js`
* `./cms/add-book.js`
* `./cms/add-tags.js`
* `./cms/remove-books.js`
* `./cms/remove-tags.js`These programs require installed Node.js >= 6.0.0. They are executable, so you
don't have to write `node ./cms/program-name.js`, just type
`./cms/program-name.js` in your terminal. Note: if you use Windows, you
*have to* specify `node` before a program path.To find out more about every program, run it with flag `-h` or `--help`,
for example:```bash
$ ./cms/list-tags.js --helpUsage: list-tags [options]
Lists existing tags
Options:
-h, --help output usage information
-V, --version output the version number```