Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noclocks/bastienlaw-remix
Bastien Law website (clone) built with Remix (+ Vite for SPA mode)
https://github.com/noclocks/bastienlaw-remix
react remix tsx typescript vite
Last synced: 4 days ago
JSON representation
Bastien Law website (clone) built with Remix (+ Vite for SPA mode)
- Host: GitHub
- URL: https://github.com/noclocks/bastienlaw-remix
- Owner: noclocks
- Created: 2024-02-22T20:45:19.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-10-31T17:47:39.000Z (17 days ago)
- Last Synced: 2024-10-31T18:30:47.421Z (17 days ago)
- Topics: react, remix, tsx, typescript, vite
- Language: CSS
- Homepage: https://bastienlaw-remix.vercel.app
- Size: 5.56 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Roadmap: docs/roadmap.md
Awesome Lists containing this project
- jimsghstars - noclocks/bastienlaw-remix - Bastien Law website (clone) built with Remix (+ Vite for SPA mode) (CSS)
README
# Law Offices of Villard Bastien Website - Remix
> [!NOTE]
> Bastien Law website (clone) built with Remix (+ Vite for SPA mode)[![Automate Changelog](https://github.com/noclocks/bastienlaw-remix/actions/workflows/changelog.yml/badge.svg)](https://github.com/noclocks/bastienlaw-remix/actions/workflows/changelog.yml)
## Tech Stack
`bastienlaw-remix` is built on the following main stack:
- [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript) – Languages
- [TypeScript](http://www.typescriptlang.org) – Languages
- [React](https://reactjs.org/) – Javascript UI Libraries
- [ESLint](http://eslint.org/) – Code Review
- [Vite](https://vitejs.dev/) – JS Build Tools / JS Task RunnersFull tech stack [here](/techstack.md)
## Initialization
```zsh
# Create Remix (+ Vite) SPA app
pnpm dlx create-remix@latest --template remix-run/remix/templates/spa app# > Initialize a new git repository?
No# > Install dependencies with npm?
No
```## Development
```zsh
# Change directory to `app`
cd app
# Install deps (Using `pnpm` instead of `npm`)
pnpm install# Start the development server
pnpm run dev
```