https://github.com/github/codespaces-preact
https://github.com/github/codespaces-preact
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/github/codespaces-preact
- Owner: github
- License: mit
- Created: 2022-10-24T17:42:15.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-08T17:04:36.000Z (about 2 years ago)
- Last Synced: 2025-01-30T07:42:40.784Z (about 1 year ago)
- Language: JavaScript
- Size: 822 KB
- Stars: 76
- Watchers: 10
- Forks: 56
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GitHub Codespaces ♥️ Preact
[Try Preact in a codespace](https://github.com/codespaces/new?template=preact)
Welcome to your shiny new Codespace running Preact! We've got everything fired up and running for you to explore Preact.
You've got a blank canvas to work on from a git perspective as well. There's a single initial commit with the what you're seeing right now - where you go from here is up to you!
Everything you do here is contained within this one codespace. There is no repository on GitHub yet. If and when you’re ready you can click "Publish Branch" and we’ll create your repository and push up your project. If you were just exploring then and have no further need for this code then you can simply delete your codespace and it's gone forever.
## CLI Commands
```bash
# Install dependencies
npm install
# Start a development server at localhost:5173
npm run dev
# Create a production build
npm run build
# Preview your production build locally at localhost:5173
npm run preview
```