Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork375
😺 Your next Preact PWA starts in 30 seconds.
License
preactjs/preact-cli
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Warning
preact-cli
unfortunately no longer sees active development! It's stable so you can rely upon it for all of your existing apps, but for creating new ones, we recommendVite viacreate-preact
. It offers many of the same features but is a much faster, more modern experience. Thanks to all the contributors and users over the years!
Start building aPreact Progressive Web App in seconds 🔥
- Features
- Usage
- Official Templates
- CLI Options
- Pre-rendering
- Custom Configuration
- Using CSS preprocessors
- Using Environment Variables
- Route-Based Code Splitting
- 100/100 Lighthouse score, right out of the box (proof)
- Fullyautomatic code splitting for routes(seeRoute-Based Code Splitting)
- Transparently code-split any component with an
async!
prefix - Auto-generatedService Workers for offline caching powered byWorkbox
- PRPL pattern support for efficient loading
- Zero-configuration pre-rendering / server-side rendering hydration
- Support for CSS Modules, LESS, Sass, Stylus; with Autoprefixer
- Monitor your bundle/chunk sizes with built-in tracking
- Automatic app mounting, debug helpers & Hot Module Replacement
- In just4.5kb you get a productive environment:
- preact
- preact-router
- 1.5kb of conditionally-loaded polyfills forfetch &Promise
Important:Node.js >= v14.14 is required.
$ npm init preact-cli<template-name><project-name>$ yarn create preact-cli<template-name><project-name>
Example:
$ npm init preact-cli default my-project
The above command pulls the template frompreactjs-templates/default and generates the project at./my-project/
.
The purpose of official preact project templates are to provide opinionated development tooling setups so that users can get started with actual app code as fast as possible. However, these templates are un-opinionated in terms of how you structure your app code and what libraries you use in addition to preact.js.
All official project templates are repos in thepreactjs-templates organization. When a new template is added to the organization, you will be able to runnpm init preact-cli <template-name> <project-name>
to use that template.
Current available templates include:
default - Default template with all features
simple - The simplest possible preact setup in a single file
netlify - Netlify CMS template using preact
typescript - Default template implemented in TypeScript
widget - Template for a widget to be embedded in another website
widget-typescript - Widget template implemented in TypeScript
💁 Tip: Any Github repo with a
'template'
folder can be used as a custom template:npm init preact-cli <username>/<repository> <project-name>
Lists all the official preactjs-cli repositories
$ [npm init / yarn create] preact-cli list
Create a project to quick start development.
$ [npm init / yarn create] preact-cli <template-name> <project-name> --name The application name. --cwd A directory to use instead of $PWD. --force Force option to create the directory for the new app [boolean] [default: false] --git Initialize version control using git. [boolean] [default: false] --install Installs dependencies. [boolean] [default: true]
Create a production build
You can disabledefault: true
flags by prefixing them with--no-<option>
; for example,--no-sw
and--no-prerender
.
$ [npm run / yarn] preact build --src Specify source directory (default src) --dest Specify output directory (default build) --cwd A directory to use instead of $PWD (default .) --sw Generate and attach a Service Worker (default true) --babelConfig Path to custom Babel config (default .babelrc) --prerender Renders route(s) into generated static HTML (default true) --prerenderUrls Path to pre-rendered routes config (default prerender-urls.json) --template Path to custom EJS or HTML template (default 'src/template.ejs') --analyze Launch interactive Analyzer to inspect production bundle(s) (default false) -c, --config Path to custom CLI config (default preact.config.js) -v, --verbose Verbose output -h, --help Displays this message
Spin up a development server with multiple features likehot-module-replacement
,module-watcher
$ [npm run / yarn] preact watch --src Specify source directory (default src) --cwd A directory to use instead of $PWD (default .) --clear Clear the console (default true) --sw Generate and attach a Service Worker (default false) --babelConfig Path to custom Babel config (default .babelrc) --https Run server with HTTPS protocol --key Path to PEM key for custom SSL certificate --cert Path to custom SSL certificate --cacert Path to optional CA certificate override --prerender Pre-render static content on first run --prerenderUrls Path to pre-rendered routes config (default prerender-urls.json) --template Path to custom EJS or HTML template (default 'src/template.ejs') --refresh Enables experimental preact-refresh functionality -c, --config Path to custom CLI config (default preact.config.js) -H, --host Set server hostname (default 0.0.0.0) -p, --port Set server port (default 8080) -h, --help Displays this message
Note:
- You can run dev server using
HTTPS
then you can use the followingHTTPS=true preact watch
- You can run the dev server on a different port using
PORT=8091 preact watch
Prints debugging information concerning the local environment.
$ [npm run / yarn] preact info
Preact CLI in order to followPRPL pattern renders initial route (/
) into generated staticindex.html
- this ensures that users get to see your page before any JavaScript is run, and thus providing users with slow devices or poor connection your website's content much faster.
Preact CLI does this by rendering your app inside node - this means that we don't have access to DOM or other global variables available in browsers, similar how it would be in server-side rendering scenarios. In case you need to rely on browser APIs you could:
- drop out of prerendering by passing
--no-prerender
flag topreact build
, - write your code in a way that supports server-side rendering by wrapping code that requires browser's APIs in conditional statements
if (typeof window !== "undefined") { ... }
ensuring that on server those lines of code are never reached. Alternatively you could use a helper library likewindow-or-global.
To make customizing your configuration easier, preact-cli supports plugins. Visit thePlugins wiki for a tutorial on how to use them.
You may customize your list of supported browser versions by declaring a"browserslist"
key within yourpackage.json
. Changing these values will modify your legacy JavaScript (via@babel/preset-env
) and your CSS (viaautoprefixer
) output.
By default,preact-cli
emulates the following config:
package.json
{"browserslist": ["> 0.5%","last 2 versions","Firefox ESR","not dead"]}
To customize Babel, you have two options:
You may create a
.babelrc
file in your project's root directory, or use the--babelConfig
path to point at any validBabel config file. Any settings you define here will be merged into thePreact CLI preset. For example, if you pass a"plugins"
object containing different plugins from those already in use, they will simply be added on top of the existing config. If there are conflicts, you'll want to look into option 2, as the default will take precedence.If you'd like to modify the existing Babel config you must use a
preact.config.js
file. Visit theWebpack section for more info, or check out theCustomize Babel example!
To customize Preact-CLI's Webpack config, create apreact.config.js
or apreact.config.json
file:
preact.config.js
// ... imports or other code up here .../** * Function that mutates the original webpack config. * Supports asynchronous changes when a promise is returned (or it's an async function). * *@param {import('preact-cli').Config} config - original webpack config *@param {import('preact-cli').Env} env - current environment and options pass to the CLI *@param {import('preact-cli').Helpers} helpers - object with useful helpers for working with the webpack config *@param {Record<string, unknown>} options - this is mainly relevant for plugins (will always be empty in the config), default to an empty object */exportdefault(config,env,helpers,options)=>{/** you can change the config here **/};
SeeWebpack config helpers wiki for more info on thehelpers
argument which contains methods to find various parts of configuration. Additionally see ourrecipes wiki containing examples on how to change webpack configuration.
The--prerender
flag will prerender by default only the root of your application.If you want to prerender other routes you can create aprerender-urls.json
file, which contains the set of routes you want to render.The format required for defining your routes is an array of objects with aurl
key and an optionaltitle
key.
prerender-urls.json
[{"url":"/","title":"Homepage"},{"url":"/route/random"}]
You can customise the path and/or name ofprerender-urls.json
by using the flag--prerenderUrls
.
preact build --prerenderUrls src/prerender-urls.json
If a static JSON file is too restrictive, you may want to provide a javascript file that exports your routes instead.Routes can be exported as a JSON string or an object and can optionally be returned from a function.
prerender-urls.js
module.exports=[{url:'/',title:'Homepage',},{url:'/route/random',},];
prerender-urls.js
exportdefault()=>{return[{url:'/',title:'Homepage',},{url:'/route/random',},];};
To customize the HTML document that your app uses, edit thetemplate.ejs
file in your app's source directory.
EJS is a simple templating language that lets you generate HTML markup with plain JavaScript. Alongsidehtml-webpack-plugin
, you're able to conditionally add HTML, access your bundles and assets, and link to external content if you wish. The default we provide on project initialization should fit the majority of use cases very well, but feel free to customize!
You can customize the location of your template with the--template
flag on thebuild
andwatch
commands:
preact build --template renamed-src/template.ejspreact watch --template template.ejs
The default templates comes with a.css
file for each component. You can start using CSS preprocessors at any given time during your project lifecycle by installing additional packages and then simply replacing those.css
files.
npm install --save-dev sass sass-loader@10
(inside your preact application folder)- start replacing
.css
files with.scss
files
npm install --save-dev less less-loader@7
(inside your preact application folder)- start replacing
.css
files with.less
files
You can reference and use any environment variable in your application that has been prefixed withPREACT_APP_
automatically:
src/index.js
console.log(process.env.PREACT_APP_MY_VARIABLE);
If your variable is not prefixed, you can still add it manually by using yourpreact.config.js
(seeDefinePlugin config in the recipes wiki).
It's important to note thatDefinePlugin
does direct text replacement; it does not makeprocess
usable.process.env
could be an empty object, yetprocess.env.PREACT_APP_MY_VARIABLE
will still get automatically replaced (if a value exists).
You can set and store variables using a.env
file in the root of your project:
.env
PREACT_APP_MY_VARIABLE="my-value"
You can also reference environment variables in yourpreact.config.js
:
exportdefault(config,env,helpers,options)=>{if(process.env.MY_VARIABLE){/** You can add a config here that will only used when your variable is truthy **/}};
"Route" components are automatically code-splitted at build time to create smaller bundles and avoid loading more code than is needed by each page. This works by intercepting imports for route components with anasync loader, which returns a lightweight wrapper component that handles code splitting seamlessly.
Automatic code splitting is applied to all JavaScript and TypeScript files in the following locations:
Pattern | Examples |
---|---|
src/routes/NAME | src/routes/home.js src/routes/about/index.tsx |
src/components/routes/NAME | src/components/routes/profile.ts src/components/routes/profile/index.js |
src/components/async/NAME | src/components/async/profile.ts src/components/async/profile/index.js |
Note:Automatic code splittingonly supports default exports, not named exports:
- import { Profile } from './routes/profile';+ import Profile from './routes/profile';This is an intentional limitation that ensures effective code splitting. For components that need named exports, place them in a directory that doesn't trigger automatic code splitting. You can then manually code-split the default export by re-exporting it from
routes/
or importing it with the"async!"
prefix.
About
😺 Your next Preact PWA starts in 30 seconds.
Topics
Resources
License
Code of conduct
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.