https://github.com/pascalallen/express-remix
express-remix is a containerized SDK offering a Node.js and Express server, and a React and React Remix client. This project is by-design minimal for rapid development.
https://github.com/pascalallen/express-remix
Last synced: 11 months ago
JSON representation
express-remix is a containerized SDK offering a Node.js and Express server, and a React and React Remix client. This project is by-design minimal for rapid development.
- Host: GitHub
- URL: https://github.com/pascalallen/express-remix
- Owner: pascalallen
- License: mit
- Created: 2024-02-07T00:59:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-07T01:02:19.000Z (over 2 years ago)
- Last Synced: 2025-06-24T04:39:53.465Z (12 months ago)
- Language: JavaScript
- Size: 79.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# express-remix


express-remix is a containerized SDK offering a Node.js and Express server, and a React and React Remix client. This project is by-design minimal for rapid development.
## Prerequisites
- [Docker](https://www.docker.com/)
- [Docker Compose](https://docs.docker.com/compose/)
## Development Environment Setup
### Clone Repository
```bash
cd && git clone https://github.com/pascalallen/express-remix.git
```
### Install JavaScript Dependencies
```bash
bin/yarn ci
```
## Build app with React Remix
```bash
bin/node npx remix build
```
## Bring up Express server
```bash
bin/up
```
## Watch for React changes
```bash
bin/yarn serve
```
You will find the site running at [http://localhost:8080/](http://localhost:8080/)
### Take Down Environment
```bash
bin/down
```