Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
preact-storemodel
Advanced tools
A nice boilerplate with unit tests, linting and code coverage.
npm install preact-storemodel --save
Create a new store for your Preact app by extending the StoreModel
.
import { observable, configure, action, computed } from 'mobx';
import StoreModel from 'preact-storemodel';
configure({ enforceActions: 'always' });
class WaypointStore extends StoreModel {
constructor() {
super('waypoint', {
namePlural: 'waypoints',
sort: 'title',
limit: 100,
api: {
search: {
url: '/api/waypoints/',
params: {
limit: 15,
sort: 'id',
},
},
load: {
url: '/api/waypoints/',
params: {},
},
save: {
url: '/api/waypoints/',
params: {},
},
},
});
}
@observable waypoint = {};
@observable waypoints = [];
}
const store = new WaypointStore();
export default store;
Jest A browser JavaScript testing toolkit. Jest is used by Facebook to test all JavaScript code including React applications. One of Jest's philosophies is to provide an integrated "zero-configuration" experience.
ESLint ESLint is a code style linter for programmatically enforcing your style guide.
Travis Travis CI is a hosted continuous integration service. It is integrated with GitHub and offers first class support for many languages.
Coveralls.io Coveralls is a web service to help you track your code coverage over time, and ensure that all your new code is fully covered.
Retire Scanner detecting the use of JavaScript libraries with known vulnerabilities.
$ git clone git@github.com:5orenso/preact-storemodel.git
$ cd preact-storemodel/
$ npm install
Start developing. Remember to start watching your files:
$ npm run test:watch
$ eslint --fix lib/utilities.js
$ git clone git@github.com:5orenso/preact-storemodel.git
Do your magic and create a pull request.
Use the Issue tracker
$ bash ./changelog.sh
package.json
$ bash ./npm-release.sh
.# Install Node Security Platform CLI
$ npm install nsp --global
# From inside your project directory
$ nsp check
$ sudo npm install -g npm-check-updates
$ ncu -u -a
$ npm install --no-optional
For transparency and insight into the release cycle, releases will be numbered with the follow format:
<major>.<minor>.<patch>
And constructed with the following guidelines:
For more information on semantic versioning, please visit http://semver.org/.
We ❤️ contributions and feedback.
If you want to contribute, please check out the CONTRIBUTING.md file.
If you have any question or suggestion create an issue.
Bug reports should always be done with a new issue.
FAQs
A nice boilerplate with unit tests, linting and code coverage.
The npm package preact-storemodel receives a total of 2 weekly downloads. As such, preact-storemodel popularity was classified as not popular.
We found that preact-storemodel demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.