Introduction to Claudia.js
Serverless architecture and serverless applications are rapidly gaining momentum. In a couple of previous blog posts I have showed simple examples of how RESTful APIs can be deployed using AWS…
Serverless architecture and serverless applications are rapidly gaining momentum. In a couple of previous blog posts I have showed simple examples of how RESTful APIs can be deployed using AWS…
The quickest way of pushing every code change to production is to use automation, but to do that in a safe and sustainable way also requires test automation. The goal…
During the last two years, I've heard the term Isomorphic Web Apps mentioned in a positive way more and more frequently. Also during this time, I've done some thinking myself…
This year we are three developers representing Jayway at Microsofts Build conference. This blog-post summarizes just some of the stuff we've seen on day one of the conference. Cross-Platform Mobile…
This is a follow up post on Using Roslyn to build a simple C# interactive script engine In this post I will explore the possibilities of making a REPL as…
AWS Lambda enables you to quickly setup a backend solution for your mobile application. AWS CloudFormation allows you to create templates for your infrastructure that can be versioned controlled. When…
I recently faced the challenge to get as much power as possible out of a AWS EC2 instance at the lowest possible cost using concurrent persistent websockets. To do this…
Recently I needed to publish a simplish node.js application on Azure. It were already running smoothly on heroku so I figured that it shouldn’t be any issue to just deploy…
Suppose we have two extremes when it comes to code editors. In one corner are the old school trusted veterans like Emacs and Vim, and in one corner are the…
Most people are aware that is is possible to define scripts in package.json which can be run with npm start or npm test, but npm scripts can do a lot…
This is how you can detect existing Node.js and npm, or automatically install a temporary Node.js if none is already installed. About the only things needed are make, bash, curl…
Recently there where a refresh release of WebMatrix2 for Windows 8. WebMatrix makes development and running node on windows easier. You could also use Visual Studio as a companion to…
Summary This blog describes One simple approach to access MongoDB using REST, CORS (Cross-Origin-Resource-Sharing) and with simple authentication and authorization. Background This mini-project started because I wanted a way for…
Node.js is a set of asynchronous libraries, built on top of the Google V8 Javascript engine. Node is used for server side development in Javascript. Do you feel the rush…