NodeJS monthly meetup

ATTENTION: THIS TEMPLATE IS DEPRECATED

This month's meetup had two talks:

1. Node.js authentication with Passport.js

Level: beginner

It's going to be about using Passport.js to implement authentication in your app. I'll talk about the basics and go through different integrations with Github or Facebook.

2. syncorm: A different way to access the database

syncorm is an orm that maintains a synchronized copy of the database in memory. You can query and modify the database directly with regular javascrit objects. syncorm will synchronize all the changes with the real mysql database in a transaction controlled manner. (bidirectionaly).
The project is already running in a production project.
The Idea of the talk will consist to create a simple REST api with a MYSQL master detail table structure.