Skip to content

Tag: node.js

jsreport failing on looking up extensions

So I recently started working on a linux machine (ubuntu 16.04) and followed the installation instructions here http://jsreport.net/downloads/. When I run npm start –production I get And I have no idea why. It was working fine on mac but now it is looking for this non-existent tmp file in ember. I&#8217…

Installing node.js 6.3.1 – no such file or directory

I’m trying to install the latest version of node on Elementary OS based on Ubuntu 14.04. I’ve purged all other version of node. I run this command as explained in a few places on the web: Then I get this output: Any ideas? Answer You want to use https://deb.nodesource.com/setup_6.x as the URL and …

How to suppress npm WARN deprecated messages in bash

I have several version of node.js installed in Linux Mint 18.0. I manage them using nvm. Because of a project dependency, I need to have version 0.10 as the default version (nvm use 0.10). As a result of this, every time I start my terminal, I get the following output: How do I suppress these messages? Answer…