@pota/react-template
v1.3.4
Published
## Setup ๐
Downloads
5
Readme
react-template
Setup ๐
You can create a new project using
@pota/create
.
npm init @pota -- --template react
or use the
react
combination, for the recommended setup
npm init @pota react
Security ๐ฎโ
Ignore scripts
In order to mitigate NPM supply chain attacks by best effort the NPM ignore-scripts setting is enabled by default. This project comes with a preconfigured set of dependencies that are allowed to run installation scripts.
After running npm install
it is required to run npm run postinstall
to run required installation scripts from dependent packages.
When adding a new dependency that requires an installation script to run make sure to add that package to the project package.json
in the postinstall
property.
Important: After running
npm install
ornpm ci
always runnpm run postinstall
afterwards before running other scripts.
Standards ๐
This project follows the MediaMonks Frontend Coding Standards
Project Structure โฉ๏ธ
source
src/components
The components
folder follows atomic design
guidelines, with a few additions:
| Folder | Description | Example |
| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------- |
| /atoms
| The smallest unit, must be self contained and not dependant on any external modules. (types and configuration being the exception) | Icon
, Paragraph
, Heading
|
| /molecules
| Must be restrained to only use atoms and minimal internal state. | Toggle
|
| /organisms
| Generally reserved for complex state uses and must use atoms
or molecules
. | Form
|
| /layout
| Components whose only function is taking in children and presenting them in a specific layout. Must not use atoms
, molecules
or organisms
. | Carousel
, Modal
, Tabs
|
| /pages
| Components which are used as pages. | Home
, About
|
| /unlisted
| Components which do not fall into any of the above categories. | App
, global context providers |
src/config
The config
folder is to be used to define any sort of configuration for styles, components or
logic.
hidden TODOs
Features ๐
Pota Commands
build
- builds the source using webpack
.
npm run build # or npx pota build
| Option | Type | Default | Description |
| ----------------------- | ----------------------------------------------------------------------------- | ---------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| analyze
| {Boolean}
| false
| When enabled, will open a bundle report after bundling. |
| cache
| {Boolean}
| true
| Toggles webpack's caching behavior. |
| image-compression
| {Boolean}
| true
| Toggles image compression. |
| debug
| {Boolean}
| false
| Sets NODE_ENV to 'development'. |
| watch
| {Boolean}
| false
| Run build and watch for changes. |
| output
| {String}
| ./dist
| The build output directory. |
| source-map
| {false\|
devtool}
| source-map
(production), eval-source-map
(development) | Sets the style of source-map, for enhanced debugging. Disable or use faster options in you are having out of memory or other performance issues. |
| public-path
| {String}
| /
| The location of static assets on your production server. |
| typecheck
| {Boolean}
| true
| When disabled, will ignore type related errors. |
| versioning
| {Boolean}
| false
| When enabled, will copy assets in ./static
to a versioned directory in the output (e.g. build/version/v2/static/...
). |
| profile
| {Boolean}
| false
| Toggles support for the React Devtools in production. |
dev
- starts the development service using webpack-dev-server
.
npm run dev # or npx pota dev
| Option | Type | Default | Description |
| ----------------------- | ----------------------------------------------------------------------------- | ---------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| cache
| {Boolean}
| true
| Toggle webpack's caching behavior. |
| https
| {Boolean}
| false
| Run the development server with HTTPS. |
| open
| {Boolean}
| true
| Allows to configure dev server to open the browser after the server has been started. |
| port
| {Number}
| 2001
| Allows configuring the port. |
| image-compression
| {Boolean}
| true
| Toggles image compression. |
| prod
| {Boolean}
| false
| Sets NODE_ENV to 'production'. |
| source-map
| {false\|
devtool}
| source-map
(production), eval-source-map
(development) | Sets the style of source-map, for enhanced debugging. Disable or use faster options in you are having out of memory or other performance issues. |
| typecheck
| {Boolean}
| true
| Toggles checking for type related errors. |
hidden TODOs
Scripts
Non-Pota scripts defined in "scripts"
of package.json
and are runnable using npm run {script}
| Script | Description |
| --------------------- | ----------------------------------------------------------------------------- |
| postinstall
| Run patch-package
to patch faulty packages. |
| build-storybook
| Bundle stories for deployment. |
| start-storybook
| Start storybook's development server. |
| plop
| Generate a new component's source files. |
| test
| Run unit tests. |
| typecheck
| Synchronously runs typecheck:main
and typecheck:tools
. |
| typecheck:main
| Checks for type errors and unused variables/types in the source directory. |
| typecheck:tools
| Checks for type errors and unused variables/types of the various local tools. |
| fix
| Executes all fix:*
and format commands in sequence. |
| **
fix:eslint** | Executes
eslint:lint and fixes fixable errors. |
| **
format** | Formats the source files using
prettier. |
| **
lint** | Executes all
lint:* commands in sequence. |
| **
lint:eslint** | Lints the source files using
eslint. |
| **
rsync** | Synchronizes (uploads)
dist/` files to a remote server. |
JavaScript / TypeScript
hidden TODOs
CSS
hidden TODOs
Images
hidden TODOs
Misc. Assets
hidden TODOs
Linting & Formatting
hidden TODOs
Service Worker
The skeleton has opt-in support for service workers through the help of workbox.
To get started, you can create /src/service-worker.ts
file to customize workbox and its many
modules .
This is how an example service worker file could look like:
/// <reference lib="webworker" />
import { clientsClaim } from 'workbox-core';
import { precacheAndRoute } from 'workbox-precaching';
declare const self: ServiceWorkerGlobalScope;
clientsClaim();
// eslint-disable-next-line no-underscore-dangle
precacheAndRoute(self.__WB_MANIFEST);
Now, whenever you bundle your application for production, a service-worker.js
file will be
generated.
As a last step, you need to make sure to register the service worker using the
serviceWorkerRegistration.ts
module, see the comment in main.ts
for more details.
Deployment
Remote Sync
For simple deployments, when you just want to upload your files to a remote server, you can use the
rsync
script.
Note: before using the rsync
script, make sure to configure a host in in the "package.json"
npm pkg set config.host="github.com"
Git
hidden TODOs
Storybook
hidden TODOs
Testing
hidden TODOs
Web Vitals
hidden TODOs
Routing
hidden TODOs
State Management
hidden TODOs
Continuous Integration / Continuous Deployment
Bitbucket
webpack-skeleton
comes with bitbucket-pipelines.yml
, pre-configured to run check-types
, lint
and test
scripts.
hidden TODOs