Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robotastic/smartnet-player
A NodeJS based website that allows for the playback of captured SmartNet II Radio Transmissions
https://github.com/robotastic/smartnet-player
Last synced: 2 months ago
JSON representation
A NodeJS based website that allows for the playback of captured SmartNet II Radio Transmissions
- Host: GitHub
- URL: https://github.com/robotastic/smartnet-player
- Owner: robotastic
- Created: 2013-09-10T00:46:38.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-11-24T03:14:37.000Z (about 8 years ago)
- Last Synced: 2024-10-11T00:44:48.379Z (3 months ago)
- Language: JavaScript
- Size: 3.52 MB
- Stars: 22
- Watchers: 10
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# smartnet-player
A NodeJS based website that allows for the playback of captured SmartNet II Radio Transmissions
## Getting Started
### Install and Setup MongoDB
Install MongoDB following instructions for your platform (Mac, Specific Linux distro)
Create a new database user:
```bash
$ mongo
MongoDB shell version: 3.2.10
connecting to: test
> use scanner;
switched to db scanner
> db.createUser({'user':'scanner', 'pwd':'vcW6rEixic3kdBWj', roles:['readWrite']});
Successfully added user: { "user" : "scanner", "roles" : [ "readWrite" ] }
>
```### Install npm & dependencies
Go to http://nodejs.org and install NodeJSAnd then use the ``packages.json`` in the repo to install the project's dependencies
``npm install``
### Configure and run the server
Edit the local ``config.js``. The twitter auth keys can be left as placeholders to start.Run the server
``node ./index.js``
And load up ``http://localhost:3004`` in your browser.