Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
pwa-helpers
Advanced tools
Small helper methods or mixins to help build a PWA, and reduce the boilerplate you might have to write. There are many different ways in which you could write these helpers; use these if you want a simple starting point.
These are vanilla JavaScript methods that can be used regardless of which frameworks or libraries your application is written in.
router.js
This is a basic router that calls a callback whenever the location is updated.
Example (in your top level element or document):
import { installRouter } from '../node_modules/pwa-helpers/router.js';
installRouter((location) => console.log(location));
network.js
This is a utility method that calls a callback whenever the network connectivity of the app changes.
Example (in your top level element or document):
import { installOfflineWatcher } from '../node_modules/pwa-helpers/network.js';
installOfflineWatcher((offline) => {
console.log(offline ? ' offline' : 'online');
});
metadata.js
This is a utility method that updates the page's open graph and Twitter card metadata.
Example (in your top level element or document, or in the router callback):
import { updateMetadata } from '../node_modules/pwa-helpers/metadata.js';
updateMetadata({
title: 'My App - view 1',
description: 'This is my sample app',
url: document.location.href,
image: '/assets/view1-hero.png'
});
media-query.js
Utility method that calls a callback whenever a media-query matches in response to the viewport size changing.
Example:
import { installMediaQueryWatcher } from '../node_modules/pwa-helpers/media-query.js';
installMediaQueryWatcher(`(min-width: 600px)`, (matches) => {
console.log(matches ? 'wide screen' : 'narrow sreen');
});
Utility methods to be used inside of testing frameworks, to reduce some testing boilerplate.
axe-report.js
This is an axe-core reporter that returns an
Error containing every a11y violation for an element. Use this if you want to
include axe-core
in automated Mocha tests, etc.
Example (in a Mocha test):
import '../node_modules/axe-core/axe.min.js';
import { axeReport } from '../node_modules/pwa-helpers/axe-report.js';
describe('button', function() {
it('is accessible', function() {
const button = document.createElement('button');
button.textContent = 'click this'; // Test should fail without this line.
return axeReport(button);
});
});
These utility methods are useful if your application is using Redux for state management.
connect-mixin.js
This is a JavaScript mixin that you can add to a Custom Element base class
to automatically connect to a Redux store. It requires you to implement a
_stateChanged
method, which is called every time the store state is updated.
Example (in an element):
import { connect } from '../node_modules/pwa-helpers/connect-mixin.js';
class MyElement extends connect(store)(HTMLElement) {
// ...
_stateChanged(state) {
this.count = state.data.count;
}
}
lazy-reducer-enhancer.js
A Redux store enhancer that lets you lazy-install reducers after the store has booted up. Use this if your application lazy-loads routes that are connected to a Redux store.
Example (in your store code):
import lazyReducerEnhancer from '../node_modules/pwa-helpers/lazy-reducer-enhancer.js';
import someReducer from './reducers/someReducer.js';
export const store = createStore(
(state, action) => state,
compose(lazyReducerEnhancer(combineReducers), applyMiddleware(thunk))
);
// An initial, lazy-loaded reducer. Use this for any other lazy reducers in elements as well.
store.addReducers({
someReducer
});
FAQs
Small helper methods or mixins to help you build web apps.
The npm package pwa-helpers receives a total of 6,755 weekly downloads. As such, pwa-helpers popularity was classified as popular.
We found that pwa-helpers demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.