Raneto Google OAuth login
TL;DR Raneto allows only basic username/password authentication, so I added Google OAuth support. This option can be turned on by setting the googleoauth option in the config.default.js file…
TL;DR Raneto allows only basic username/password authentication, so I added Google OAuth support. This option can be turned on by setting the googleoauth option in the config.default.js file…
In this post I’ll show you how you can quickly turn any website into an executable with nativefier in a single command. I just stumbled upon an awesome…
In this StackOverflow question I answered what to do when you get an unexpected token ‘\u0000’ error when using npm install -g to install some package. I’m a big…
I’m a big fan of Stack Overflow and I tend to contribute regularly (am currently in the top 0.X%). In this category (stackoverflow) of posts, I will be posting my…
In this post I’ll show you the modules which help in finding the outdated packages via npm. This is an excerpt from the book Deploying Node.js by Sandro…
I’m a big fan of Stack Overflow and I tend to contribute regularly (am currently in the top 0.X%). In this category (stackoverflow) of posts, I will be posting my…
To list globally installed Node.js packages on your machine you can run the following command: ls `npm root -g` and it will just list globally installed packages, like…
Recently I was reinstalling ionic and cordova with: npm install -g cordova ionic but I got the following error: E:\IonicTesting>npm install -g cordova ionic npm WARN engine [email protected]:…
This is a straight to point short tutorial on how to set up NGINX as a reverse proxy in front of a Node.js application, and although this is not…
Previously I wrote about running Node.js apps with Nodemon and Forever but nowdays I’m using the ever so slightly more professional PM2. Running your Node.js application by hand is, well,…
This error come up when I tried to use the debugging tools for Node.js program using Visual Studio Code, as outlined in their official tutorial. The solution was…
Building blocks of Express.js on CodeSchool, notes below… If you’re interested for more in depth tutorial about Node.js and Express, make sure you check out the 2nd tutorial…
edit (18.06.2015): Nowdays I’m using PM2, and here’s my post that explains how to use PM2. Nodemon is a utility that will monitor for any changes in your source and…
Redis is an open source, BSD licensed, advanced key-value cache and store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets, sorted sets, bitmaps and hyperloglogs. Comparison with Memcache and Memcached can be…
TL;DR: In this short tutorial I’ll show you how I built my own testable (Jasmine) npm module which I then published to npm repository. The npm module is here,…
First things first, if you bought your domain elsewhere then you first need to point that domain to your server. You basically have two options here installing, setting…
So, first you need to download all the data that Facebook has stored for you (well, and what it’s willing to give you :)). You can do that…
Due to its folder nesting Windows can’t delete the folder as its name is too long. To solve this, install RimRaf: npm install rimraf -g and delete the…
What are they? MEAN.(io + js) are both full-stack JavaScript frameworks, and they are both comprised of these technologies: MongoDB – leading NoSQL database, empowering businesses to be more agile and…
Disclaimer: I’m in no way affiliated with Nodejitsu or MEAN.io. I’m just documenting my experience with them – problems (and solutions) I’ve faced while trying these new technologies…
This is a post about getting started with OpenShift Online on a Windows machine by deploying a MongoDB, Node.js and RockMongo application for free. The reason why this…
Disclaimer: I’m in no way affiliated with Nodejitsu or any of the frameworks that I listed below in the post. I’m just documenting my experience with them –…
My problem started with not being able to install gulp. I checked my npm version (npm –version ) and saw I have version 1.2.32 whilst the time of this…
Heroku is a cloud platform as a service supporting several programming languages which lets app developers spend their time on their application code, not managing servers, deployment, ongoing…
Nodemon is a utility that will monitor for any changes in your source and automatically restart your server. Perfect for development. Install it using npm. npm install -g…
Recently I started using CodeSchool to explore new languages/technologies in the web world, and I will post every Tuesday something new that I learn. So far, all I have…
Why? Recently I had to make a script which runs once per week and gathers images of an admin interface (login required) and sends it to its manager…