Travelled to Slovakia 3 weeks back to speak about Angular 2 in Bratislava at the OpenSlava conference. Just a basic overview of Angular 2 vs 1. I dove into what docs I could find, took John Papa’s sample Angular 2 project out for a spin, played with a few language implementations.
Category: JavaScript
-
Fun With Mongo
Introduction
The last tech I got to have fun with on my vacation was MongoDB. It’s a NoSQL database, meaning, it doesn’t use the common SQL. It stands for “Not Only SQL”, but they market it to people like me so I call it “No SQL thank god”. Instead, it stores JSON objects which it calls documents. They’re stored as BSON: binary JSON.
Given my recent delusions of grandeur once I got login in Node + deployment of Node working, the world was my oyster, so I dove headlong into Mongo. Once I learned how to navigate to the real documentation, I felt right at home.
-
Fun With Node, Restify, and JSON Web Token
I describe why Node matters to me, then go over some code. Feel free to skip to the code.
Introduction
The 2nd tech I got to play with on my vacation was Node, the middleware Restify, and wiring up JSON Web Tokens for authentication.
Today, I wanted to cover what I learned building a sample application. Specifically why Restify over Express, static vs API hosting, some of the basics I didn’t know about REST API’s, CORS, Promises with Bluebird, routes, and my changed attitudes towards API development.
(more…) -
Fun With Polymer 1.1
Introduction
I’ve spent the past 2 weeks of my vacation playing with JavaScript, Polymer, Node, Express, Restify, and Mongo. Today, I wanted to cover the fun I had with Polymer, Google’s web UI component framework, contrast it with other frameworks, and give my general impressions. From this you’ll have a firm understanding of what Polymer is for, how to use it, and what things to watch for.