diff options
author | 2022-12-09 01:19:52 +0800 | |
---|---|---|
committer | 2022-12-08 12:19:52 -0500 | |
commit | 9e6150cd14e37fe98709195826acb055566a5869 (patch) | |
tree | 81d9e23387616ce3836aaed3c586be1834253320 | |
parent | 50cb99003aca4a24771c1e3accd457efea353b52 (diff) | |
download | astro-9e6150cd14e37fe98709195826acb055566a5869.tar.gz astro-9e6150cd14e37fe98709195826acb055566a5869.tar.zst astro-9e6150cd14e37fe98709195826acb055566a5869.zip |
Improve README install guide (#5479)
* Improve README install guide
* Fix punctuations
-rw-r--r-- | README.md | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -9,12 +9,15 @@ ## Install +The **recommended** way to install the latest version of Astro is by running the command below: ```bash -# Recommended! npm create astro@latest +``` + +You can also install Astro **manually** by running this command instead: -# Manual: +```bash npm install --save-dev astro ``` |