generated from MichaelCurrin/deno-project-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Update deploy.md, docs/template-notes/README.md, comparison.md,…
… features.md, packages.md and resources.md
- Loading branch information
1 parent
1ca1bde
commit 07e2e03
Showing
6 changed files
with
52 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
# Features | ||
> A list of features of this project | ||
|
||
- Outline of a basic React built with React. | ||
- Two modes for running your React app. | ||
- Start a dev server. | ||
- Start a dev server which rebuilds on JS changes. | ||
- Create a production build - then serve it a locally or on your production server. | ||
- Task running through Deno and `make`. | ||
- See [Makefile](/Makefile) or run `make help` for commands. | ||
- This flow replaces using `package.json` and `npm/yarn run`. | ||
- Light on configuration files and dependencies. No need to install ESLint, a test runner or TypeScript. These are all built into Deno. Deno also handles `.jsx` files out the box. | ||
- Light on configuration files and dependencies. **No** need to install ESLint, a test runner or TypeScript. These are all built into Deno. Deno also handles `.jsx` files out the box. | ||
- Documentation is included - see [docs/](/docs/). | ||
- GitHub Actions CI is included. | ||
- See the workflow in [.github/](/.github/). | ||
- See the workflow in [.github/workflows](/.github/workflows/). | ||
- This builds the app and deploys static assets for serving your React Single-Page Application. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,26 @@ | ||
# Resources | ||
|
||
## Tools used | ||
|
||
- [Deno](https://michaelcurrin.github.io/dev-resources/resources/javascript/deno/) resources. | ||
- [React](https://github.com/MichaelCurrin/learn-to-code/blob/master/en/topics/scripting_languages/JavaScript/libraries/react.md) resources. | ||
- [React](https://michaelcurrin.github.io/dev-resources/resources/javascript/packages/react/) resources. | ||
|
||
## Related projects | ||
|
||
### React | ||
|
||
- [![MichaelCurrin - react-quickstart](https://img.shields.io/static/v1?label=MichaelCurrin&message=react-quickstart&color=blue&logo=github)](https://github.com/MichaelCurrin/react-quickstart) | ||
- React and Node. Conventional flow using a project generated with `npx create-react-app`, plus CI to deploy. | ||
- [![MichaelCurrin - react-frontend-quickstart](https://img.shields.io/static/v1?label=MichaelCurrin&message=react-frontend-quickstart&color=blue&logo=github)](https://github.com/MichaelCurrin/react-frontend-quickstart) | ||
- React but without Deno, Node or a build step. | ||
- This used ES Modules to load packages by URL - so it is similar to this React Deno project. | ||
|
||
### Deno | ||
|
||
- [![MichaelCurrin - deno-project-template](https://img.shields.io/static/v1?label=MichaelCurrin&message=deno-project-template&color=blue&logo=github)](https://github.com/MichaelCurrin/deno-project-template) | ||
- A generic Deno project. | ||
|
||
### Node | ||
|
||
- [![MichaelCurrin - node-project-template](https://img.shields.io/static/v1?label=MichaelCurrin&message=node-project-template&color=blue&logo=github)](https://github.com/MichaelCurrin/node-project-template) | ||
- A generic Node project. |