-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
153 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,23 @@ | |
|
||
### Installation | ||
|
||
> \# sudo npm install -g @angular/cli \# sudo npm install -g ionic@latest \# sudo npm install $ npm run ionic $ npm run ionic:serveStatic | ||
```sh | ||
sudo npm install -g @angular/cli | ||
|
||
sudo npm install -g ionic@latest | ||
|
||
sudo npm install | ||
|
||
npm run ionic | ||
|
||
npm run ionic:serveStatic | ||
``` | ||
|
||
#### Downgrade | ||
|
||
> $ npm install -g [email protected] | ||
```sh | ||
npm install -g [email protected] | ||
``` | ||
|
||
\(version number after ionic@**\_.\_.\_**\) | ||
|
||
|
@@ -90,4 +102,23 @@ To run locally on chrome | |
## Node Package Manager | ||
|
||
Package repository | ||
https://www.npmjs.com/package/package | ||
[npmjs packages](https://www.npmjs.com/package/package) | ||
|
||
## Node Version Manager | ||
|
||
Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions | ||
[NVM github](https://github.com/nvm-sh/nvm) | ||
|
||
```sh | ||
# Download NVM | ||
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash | ||
|
||
# Verify Installation | ||
command -v nvm | ||
|
||
# Restart terminal or source your `.zhsrc` config | ||
source ~/.zshrc | ||
|
||
# Install Node | ||
nvm install node | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters