https://github.com/igorlima/rubyconfbr2016
A walk through realtime databases: Powering the next gen of JS apps
https://github.com/igorlima/rubyconfbr2016
Last synced: about 1 year ago
JSON representation
A walk through realtime databases: Powering the next gen of JS apps
- Host: GitHub
- URL: https://github.com/igorlima/rubyconfbr2016
- Owner: igorlima
- Created: 2016-09-22T02:44:24.000Z (over 9 years ago)
- Default Branch: gh-pages
- Last Pushed: 2016-09-23T19:48:51.000Z (over 9 years ago)
- Last Synced: 2025-01-29T21:55:45.805Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://igorlima.github.io/rubyconfbr2016/
- Size: 44.9 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ruby Conf BR 2016
A walk through realtime databases: Powering the next gen of JS apps
[This talk](http://codepen.io/igorribeirolima/pen/EgkZWd) covers a way on how to focus on front-end development and not spend hours on server-side work. The use of DBaaS - DataBase as a Service - allows us to focus on what JS developer likes - JS stuff. No matter which framework you are familiar with: ReactJS, AngularJS, Backbone, EmberJS, and so forth. DBaaS fits any JS library/framework. It gives us many advantages. During the talk, there will be few examples using AppBase and Firebase. Both are DBaaS platforms. These examples cover details on how getting started, setting up and so on.
Enjoy and take advantages. Slides are here: [http://s.codepen.io/igorribeirolima/debug/EgkZWd](http://s.codepen.io/igorribeirolima/debug/EgkZWd)
## local http static server
To run an ad hoc [http static server](https://gist.github.com/willurd/5720255) in current (or specified) directory, available at `http://localhost:8000`
```sh
python -m SimpleHTTPServer 8000
```