Skip to content

Latest commit

 

History

History
34 lines (31 loc) · 881 Bytes

2021_08_30.md

File metadata and controls

34 lines (31 loc) · 881 Bytes
  • DONE In order to clone a private [[git]] repo, run the following in your terminal cd'ed into the directory that you wish to clone the private repo:
    git clone https://[email protected]/USERNAME/repo_name
  • TODO Tutorial for using [[yarn]] with [[Nextjs]]
    • Installing yarn:

      • # Use macOS homebrew for installation
        brew install yarn
        
        # Find out yarn version with
        yarn -version
    • Installing dependencies & upgrading with yarn:

      • # Install "latest" version of package
        yarn add package-name
        
        # Install a specific version of package
        yarn add [email protected]
      • Remove package

        • yarn remove package-name
    • New Nextjs Project with yarn:

      • yarn create next-app
        
        # or for typescript
        yarn create next-app --typescript