Hi @Miceuz just noticed that my kicad_bom_wizard package didn’t include the actual javascript. Sorry I’ve pushed an update which should solve this issue.
On a different note, I’ve noticed that you aren running an out of data version of node and npm. the current version is
Ron@HDE_VB:~$ node -v
v4.2.6
Ron@HDE_VB:~$ npm -v
2.14.12
Could you install the latest version. You can do it by using the prebuild binary package. Here’s a link on how to do it via stackoverflow
Here’s that same instruction but update to for today’s current version.
for 64bit linux
# this will remove old version from your system
sudo apt-get remove nodejs node npm
cd ~/
# download the latest version as of 08 feb 2016
wget https://nodejs.org/dist/v4.2.6/node-v4.2.6-linux-x64.tar.xz
# extract the tar file
tar xf node-v4.2.6-linux-x64.tar.xz
# move it to the correct location in your system
sudo cp -rp node-v4.2.6-linux-x64 /usr/local/
# add a symbolic link so node. this will make it easy to update node in the future
sudo ln -s /usr/local/node-v4.2.6-linux-x64/ /usr/local/node
# now we need to add /usr/local/node/bin to our system path. assuming ubuntu without zsh
printf "\nexport PATH=/usr/local/node/bin:\$PATH\n" >> ~/.profile
# You will need to logout and log back in for the system path to start using /usr/local/node/bin
# check if you the new path in your system
echo $PATH
# check node and npm version
node -v
npm -v
-ROn