Skip to content

Instantly share code, notes, and snippets.

View ManeeshAkurathi's full-sized avatar
😎

Maneesh ManeeshAkurathi

😎
  • India
View GitHub Profile
@ManeeshAkurathi
ManeeshAkurathi / nvmCommands.js
Created February 26, 2024 12:32 — forked from chranderson/nvmCommands.js
Useful NVM commands
// check version
node -v || node --version
// list locally installed versions of node
nvm ls
// list remove available versions of node
nvm ls-remote
// install specific version of node
@ManeeshAkurathi
ManeeshAkurathi / Default_React_CSS_index.css
Last active March 13, 2023 17:18
Default React CSS for entry(index.js)
* {
box-sizing: border-box;
}
#root {
height: 100%;
}
html {
height: 100%;