Skip to content

Latest commit

 

History

History
196 lines (128 loc) · 8.01 KB

README.md

File metadata and controls

196 lines (128 loc) · 8.01 KB

<<<<<<< HEAD

Primer React Template 🐱⚛️

The quickest way to test out or prototype something in Primer React without having to set up a new project.

preview

Get Started (Codespaces)

  1. Click Code
  2. Click new codespace
  3. Pick any machine type and click create codespace
  4. Wait until the container is built and Running postCreateCommand... is finished running in the bottom TERMINAL panel.
  5. Now in the TERMINAL panel write the yarn start command and hit enter.
  6. When it's finished building your project click Open to open a preview of it. If this doesn't happen click PORTS in the bottom window and open the Local Address from there.
  7. Now you are in Mona's playground 🎉 and you can start editing the src/Playground.js file to play around with Primer React.
Instructions.mov

Get Started (Locally)

  1. Clone the project
  2. Run yarn
  3. Run yarn start
  4. Open http://localhost:3000 to view it in the browser.
  5. Go to src/Playground.js to start prototyping.

(For GitHub staff only) Check out this talk (9 minutes 30 seconds) from @heyamie for more tips on prototyping with Primer React.

Primer React Prototype ⚛️⚡

The easiest way to build a prototype from scratch with Primer React and deploy with GitHub Pages.

Perfect for quick prototyping with code, and setup to be visible only for signed-in Hubbers. Works (mostly) out of the box!

Built using vite.dev, see their docs if you want to customize any configuration (you shouldn't have to).

Get Started (Quick setup - Codespaces)

See instructions

Create a codespace

  1. Create a codespace for your prototype by clicking Use this template > Open in a codespace

  2. In the codespaces terminal, run:

npm install
npm run dev

Once npm run dev is running, go to the PORTS tab in the terminal and open the URL for your prototype:

Screenshot showing the ports tab and Port URL

If the PORTS tab is not visible for you, right-click next to the other tabs and enable it in the dropdown menu:

Screenshot showing how to enable the ports tab

Sharing your prototype

This is a temporary URL that's only live while npm run dev is running in your Codespace.

To make the URL accessible for others, change its visibility:

  1. Go to PORTS tab
  2. On the Visibility column, right click on 🔒 Private
  3. Choose Port visibility on the dropdown
  4. Change it to Private to Organization

Screenshot matching the description above

To share a permanent URL, see Get Started (Local development) below.

Saving your codespace into a repository

If you try to git push from your codespace terminal, you will notice there is no repository associated with it.

To save your work, create a new empty repository owned by @github and set your codespace to it by running:

git remote add origin [email protected]:github/YOUR_REPO_NAME.git
git branch -M main
git push -u origin main

Once you have a repository saved, you should finish the configuration under Deploying your prototype.

You don't need to develop locally, however. You can always keep building in the browser, just choose the Coodespaces tab under the Code button:

Code button and Codespaces tab opened in the dialog below

Get Started (Local development)

See instructions

Start your repository

  1. Create a repository for your prototype by clicking Use this template > Create a new repository

  2. Set the repository Owner as github so that the deployment is only enabled for Hubbers. Choose whatever name you want.

  3. Clone your new repo locally

Developing

You need to have nodejs installed on your machine. If you don't, head here and choose macOS installer.

Once you have the repository cloned on your machine, open the folder on VSCode or the terminal and run:

npm install
npm run dev

You will see the site running on http://localhost:1234

Deploying your prototype

You need to change a few settings on GitHub.com for your prototype to be deployed & visible. This cannot be automated at the moment unfortunately!

  1. Go to your repository, then Settings > Pages:
    • Set GitHub Pages visibility to Private
    • Set Build and deployment source to GitHub Actions

Screenshot showing the UI with the descriptions above

  1. Go to your repository, then Settings > Collaborators and teams:
    • Click "Add teams"
    • Add github/employees with at least "Read" permission

Manage access UI showing "Add teams" and the @github/employees team already added

  1. Push your first commit after setting this up, and you will see your prototype available on an auto-generated URL under Settings > Pages. Share this URL with any Hubber and they will see it too!

Interface written: GitHub Pages - Your site is live at https://refactored-guacamole-6kolnpq.pages.github.io/

Extra options
  • Add your Pages URL to the repository description:
    • On your repository homepage, click the gear (⚙️) icon next to About to edit the description
    • On the modal check Use your GitHub Pages website
    • Save changes, and your URL will be visible
>>>>>>> 66c58f06f60ba27ba01e7ac0e8ccb83d2d81b319

10 reasons why this is great

  • 🧑🏻‍💻 Get used to using Codespaces
  • 🥺 You're a new Hubber, you have enough to learn already
  • 👁 Color mode test your layout quickly
  • 🧖‍♀️ Prototype layouts outside the main platform
  • 🗑 No clutter on your local computer
  • 🥴 No local problems
  • 🪄 No linter or formatter issues
  • ▶️ Send over a preview link while working live on your code, no waiting for deploy previews needed.
  • 🚀 No need to set up a new react project, just instantly start prototyping
  • 🧪 You want to learn React

Useful Links

Tips and Tricks

  • Use Primer React components to build your layouts, or check Primer Templates (staff only) to get a starting point.
  • To create new pages, duplicate any file in the /pages folder and rename it to whatever.jsx. Now head to localhost:1234/whatever and you will see your new page loaded
  • Also check out this talk from @heyamie for more tips on prototyping. Some parts are only relevant for NextJS projects, but a lot still applies!

Dealing with errors

npm: command not found

If you try to run npm install and get an error similar to the one described above, that means you don't have Node/npm installed on your machine. In that case, head here to download it. Choose macOS installer for the simplest option.

Any other error

Please open an issue or send a message on #primer in Slack (staff only). This repository is built to be a simple prototyping experience for designers and other non-developers. If it doesn't work out of the box, the template is wrong, not you -- please reach and the Primer team will help!

66c58f06f60ba27ba01e7ac0e8ccb83d2d81b319