installing rocket chat on freebsd - npm

I am trying to install rocket chat on freebsd 10.
I tried installing using docker (https://github.com/RocketChat/Rocket.Chat/wiki/Deploy-with-Docker) and I was able install docker but not docker-compose.
Installing it without docker (https://github.com/RocketChat/Rocket.Chat/wiki/Deploy-Rocket.Chat-without-docker), I get stuck with nave. That is, after
npm install nave -g
and executing
nave usemain 0.5.3
i get this response
nave: Command not found.
Basically I just need Rocket Chat server working on freebsd. Any help will be appreciated

Related

npm install Angular-cli not working on CentOS7 without Internet

How to install Angular CLI on CentOS7 vm?
The machine doesn't have an internet connection.
I can download the required files to a Windows machine and transfer those files to the CentOS7 virtual machine using winscp.
Please any advises how can I proceed?
I installed nodeJS as well. Please see the Error Messages below while trying:
npm install -g #angular/cli#ll
Snip of Error Messages

Can I use phantomJS on Azure app service for linux?

I'm getting a consistent error when trying to use the html-pdf package in my node application:
StatusError: Error: spawn /home/site/wwwroot/node_modules/phantomjs-prebuilt/lib/phantom/bin/phantomjs ENOENT
As far as I can tell everything is installed correctly and the npm install works as expected. My suspicion is that there is some missing dependency in the built-in linux image, but I'm not sure how to confirm that.
According to the information comes from the Download PhantomJS page, there is two note for Linux Distributions as below.
Note: For this static build, the binary is self-contained. There is no requirement to install Qt, WebKit, or any other libraries. It however still relies on Fontconfig (the package fontconfig or libfontconfig, depending on the distribution). The system must have GLIBCXX_3.4.9 and GLIBC_2.7.
So the native package fontconfig or libfontconfig must have been installed in docker image first.
For Debian/Ubuntu system, you can add RUN apt install fontconfig in the docker file, and check the package installed whether be exists via the command dpkg -l|grep fontconfig.
For Fedora/CentOS system, add RUN yum install -y fontconfig, and check the installed on via yum list installed|grep fontconfig.

could not execute command lessc in odoo 10 Windows

I want to ask about odoo 10 installation on windows.
I have error like this "could not execute command 'lessc' "
I have seen in another post about this problem, but their post just discussing about mac and ubuntu server not in windows.
Anyone can help me about this for windows? Thank you
You need NodeJS:
Less CSS via nodejs
on Windows, install nodejs, reboot (to update the PATH) and install less:
C:\> npm install -g less
From odoo website: https://www.odoo.com/documentation/10.0/setup/install.html

Ubuntu Appcelerator - Cannot install node on platforms other than windows or mac

Appc is successfully setup via terminal. Each prerequisite installed but on Studio launch Appcelerator cannot find/recognize installed node and tries to install node again and prompts "cannot install node on platforms other than windows or mac".
Since I am using the latest version of Titanium so it requires the latest Node.js (nodejs, node and npm). Appcelerator tries to install node because it does not find any compatible version.
Secondly Appcelerator tries to install all pending prerequisites and it cannot install node on platforms other than windows or mac so you have to install nodejs via terminal.
To debug issues try to run programs via terminal. Particular to Appcelerator in Ubuntu, go the directory and run it by command $ ./AppceleratorStudio
It will prompt all ERRORS, WARNINGS and NOTICES.

Appium does not start with non sudo installation

Platform: Ubuntu 14.10
Appium - 1.3.7
One similar question I had come across -
How to setup Appium in Ubuntu for android
and following suggestion, I install npm via HomeBrew
And eventually, appium execution fails with error -
error: Appium will not work if used or installed with sudo. Please rerun/install as a non-root user. If you had to install Appium using `sudo npm install -g appium`, the solution is to reinstall Node using a method (Homebrew, for example) that doesn't require sudo to install global npm packages.
Is there anything I missed?
Appium allows to run under sudo since 1.2.3: source
apparently I was on wrong directory when invoking invoking appium. I should be in /node-v0.12.2-linux-x64/bin$ and invoke appium.
even though I was in wrong directory, the error message I received was so descriptive (and misleading) that it made me believe that I installed appium in wrong way.