How to switch Node.js version using CLI?

You can easily switch the Node.js version when you have downloaded multiple different versions of Node.js.

You can see the available list of Node.js by running the command,

nvm ls

You will see output like, Continue reading “How to switch Node.js version using CLI?”

Missing binding /project/node_modules/node-sass/vendor/linux-x64-64/binding.node while yarn build-all.

Recently I faced an issue while building yarn for one of my projects with the node build all command.

Error Display on CLI when running the command, yarn install && yarn run build-all

Error: Missing binding /home/rakesh/projects/projectName/app/design/frontend/Theme/default/node_modules/node-sass/vendor/linux-x64-64/binding.node

Node Sass could not find a binding for your current environment: Linux 64-bit with Node.js 10.x
Continue reading “Missing binding /project/node_modules/node-sass/vendor/linux-x64-64/binding.node while yarn build-all.”

How To Export Database Dump From Mysql?

You can take mysqldump DB backup from Mysql with just simple steps.

  • First You need to log in with your SSH server.
  • After Login, Just go to your server directory location where you want to keep DB backup and that path must be writable.
  • Run the given command to take DB Backup,

Continue reading “How To Export Database Dump From Mysql?”