An open API service indexing awesome lists of open source software.

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

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
```