![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
expo-pwa
Advanced tools
expo-pwa
Generate PWA files for your project
You can use this package with npx or globally install:
# npx
npx expo-pwa [options]
# global
npm i -g expo-pwa
Optionally, you can install the sharp CLI globally before using this CLI for native image editing:
npm install -g sharp-cli
This package was created as a universal solution for creating PWA assets locally, with optional native acceleration via Sharp CLI, falling back on Jimp for wider device compatibility. Internally the @expo/webpack-config
uses this package to generate PWA compliant website for Expo projects. By splitting this logic out of the Webpack config, we can generate PWAs for Next.js and Gatsby projects as well!
Image generation is not limited to Expo projects.
You can use this CLI to generate PWA assets manually and skip the Expo Webpack PWA generation step, effectively speeding up your production builds.
To do this, you'll need to first eject the web/index.html
expo customize:web
# select the `web/index.html` option
Now you can run any of the PWA commands, for this example we'll generate favicons. Assuming you have an image at ./assets/icon.png
, run the following command from the root project folder.
Note: This also works for remote images!
expo-pwa favicon ./assets/icon.png
The images by default will be created in the Expo web static folder web/
(this can be changed using the --output
flag). You should see the following output:
$ expo-pwa favicon ./assets/icon.png
› Copy the following lines into your HTML <head/> to link the new assets.
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16.png"></link>
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png"></link>
<link rel="shortcut icon" href="/favicon.ico"></link>
Simply copy the last few lines into the <head />
of your web/index.html
. When you build your project with expo build:web
, the new favicons will be copied over from the web/
folder, and Webpack will skip the Favicon generation step.
If you don't use all of the links, the Webpack config will attempt to create the missing ones using the values specified in your Expo project config.
You can always disable all PWA generation with expo build:web --no-pwa
.
For more info run:
expo-pwa --help
# For command info, run `expo-pwa <command> --help`
expo-pwa splash --help
command | description |
---|---|
icon | Generate the home screen icons for a PWA |
favicon | Generate the favicons for a website |
splash | Generate the Safari splash screens for a PWA |
manifest | Generate the PWA manifest from an Expo project config |
The Expo source code is made available under the MIT license. Some of the dependencies are licensed differently, with the BSD license, for example.
FAQs
Create PWA resources for Expo projects
The npm package expo-pwa receives a total of 72,727 weekly downloads. As such, expo-pwa popularity was classified as popular.
We found that expo-pwa demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 24 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.