Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unixzii/springboard
Launcher page for my web browser
https://github.com/unixzii/springboard
bookmarks homepage personal-website
Last synced: 15 days ago
JSON representation
Launcher page for my web browser
- Host: GitHub
- URL: https://github.com/unixzii/springboard
- Owner: unixzii
- License: mit
- Created: 2018-01-20T05:38:45.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-20T13:06:29.000Z (almost 7 years ago)
- Last Synced: 2023-05-13T23:45:41.612Z (over 1 year ago)
- Topics: bookmarks, homepage, personal-website
- Language: JavaScript
- Homepage: https://unixzii.github.io/SpringBoard/
- Size: 129 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SpringBoard
A personal use web page that plays a role of browser's launcher page.
[Online Demo](https://unixzii.github.io/SpringBoard/) (my daily entrance, exactly)
## Install
```shell
git clone https://github.com/unixzii/SpringBoard.git
cd SpringBoard
npm install
```After the installation, you will have to prepare a file called `bookmark.json` (see the section below for more details) and place it into the `./statics` folder.
When things are all set, you can start it up:
```shell
npm start
```## bookmark.json
This is the database of **SpringBoard** project, and the structure of its content looks like this:
```json
[
{
"title": "Title of Category",
"items": [
{
"title": "Title of Website",
"url": "http://foo.bar"
}
]
}
]
```## Disclaimer
This project is for personal use, you may still open issues about some existing features' bugs, but the priority of new feature requests are not guaranteed.
## Contributing
All PRs are welcomed!
## License
The project is available under the MIT license. See the `LICENSE` file for more info.