Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elmarti/teaencryptioncoffeescriptmeteor
Implementation of TEA algorithm using Meteor and CoffeeScript
https://github.com/elmarti/teaencryptioncoffeescriptmeteor
Last synced: 5 days ago
JSON representation
Implementation of TEA algorithm using Meteor and CoffeeScript
- Host: GitHub
- URL: https://github.com/elmarti/teaencryptioncoffeescriptmeteor
- Owner: elmarti
- Created: 2015-12-11T18:03:42.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-11T18:07:12.000Z (about 9 years ago)
- Last Synced: 2024-11-02T20:42:16.544Z (about 2 months ago)
- Language: CoffeeScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
How to run the project
#if you haven't installed meteor
#linux
curl https://install.meteor.com/ | sh
#windows
https://www.meteor.com/install#then do the following in the terminal or cmd
meteor create informationsecurity
cd project
rm -f informationsecurity.js informationsecurity.html informationsecurity.css
#now that the directory is empty, paste in their place is.html and is.coffee from my project folder#ensure all meteor packages, along with my additional ones are installed
meteor add autopublish blaze-html-templates coffeescript ecmascript es5-shim insecure jquery meteor-base mobile-experience mongo mrt:bootstrap-3 mrt:bootstrap-growl session standard-minifiers tracker
#to run project at localhost:3000
meteor
#to run at particular port (port 80 for example)
meteor --port 80