This repository was bootstrapped with Code Shaper.
It shows how Code Shaper can be used to create applications and services more efficiently. We have provided sample applications using the following frameworks:
All applications are created inside a monorepo (using Turborepo), working in harmony and sharing common packages.
To see step-by-step instructions for creating these apps, visit Getting Started in Code Shaper docs.
The repository contains three web applications created using React, Next.js and
Remix. They all depend on a package called ui-lib
for common React components.
They also depend on an Express app, called movie-magic-api
, which provides a
RESTful API for fetching movie data.
npm ci # install dependencies
npm run build # run a full build to make sure libraries are built and available to all apps
npm run dev # run the apps
Open browser windows at the following URLs to see the respective apps:
- http://localhost:3000/: Movie Magic | React
- http://localhost:3001/: Movie Magic | Next.js
- http://localhost:3002/: Movie Magic | Remix
- http://localhost:6006/: Storybook
Note that the React app fetches mock data from MSW, whereas the other two apps fetch real data from the movie-magic-api.
Note: Do not run
npm install
ornpm ci
in any of the subdirectories. It will break the build. There should be only onepackage-lock.json
file in the entire repo (at the root).
npm ci # install dependencies
npm run build # builds all workspaces
npm run ci-validate # builds, lints, formats, and tests all code (simulates CI pipeline, run before pushing to remote)
npm run clean # deletes all build artifacts
npm run commit # displays commit helper prompt to ensure your commits use conventional commits
npm run dev # run demo app
npm run fix # lints, formats and attempts to fix any issues (requires `npm run build` has been ran)
npm run format # formats all workspaces, useful for debugging format issues (generally `npm run fix` is preferred)
npm run lint # runs the linter on all workspaces, useful for debugging lint issues (generally `npm run fix` is preferred)
npm run test # runs full build, lint, format, and all tests
To build all packages and apps for production, run the following command:
npm ci
npm run build
Removes all build artifacts and performs a clean build.
npm run clean
npm ci
npm run dev
For an "aggressive" clean build, add one more step as shown below. This will build the lock file from scratch.
npm run clean
rm package-lock.json
npm install
npm run dev
npm test
npm run dev # starts a local server hosting the react app
# run cypress in a different shell
npm run cypress
npm run fix
npm run ci-validate
If you have not installed Code Shaper, install it first:
npm install -g code-shaper
Now build and run the React Patterns plugin
npm run build
shaper
? Which plugin would you like to run? React Patterns
? Which generator would you like to run? fetch-hook
? What are you fetching? Orders
? What is the return type? Order[]
? Parent directory? apps/movie-magic/src/pages/HomePage
Creating useOrders...
useOrders.ts