npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@haaretz/htz-react-base

v2.3.0

Published

Encapsulated development scripts and dependencies for building React apps and components.

Downloads

11

Readme

htz-react-base

Encapsulated development scripts and dependencies for building React apps and components.

Table of Contents

Installation

This module should be installed in devDependencies:

$ yarn add -D @haaretz/htz-react-base

Usage

Installing htz-react-base will make an htz-scripts executable available to the consuming package, which can be run like so:

$ ./node_modules/.bin/htz-scripts <command>

However, for ease of use, it is recommended to add scripts mirroring the available htz-scripts commands to the scripts field of your package.json file. Scripts run this way will automatically have htz-scripts in their $PATH.

A helper command is provided to do this for you. Run this once (or when htz-react-base is updated with new scripts), and you will henceforth be able to use yarn run <command> or npm run <command> instead of running htz-scripts directly:

$ ./node_modules/.bin/htz-scripts update-scripts

Some commands accept arguments, which should be passed after the command name. Note that if running via Yarn or npm scripts, you will need to add -- after the script name to add arguments, for example:

$ yarn run test -- --verbose

Base Configs

Babel

This package contains a babel present for internal use at @haaretz.

packages using it should have a .babelrc.js file at their root with, in the most basic usecase:

module.exports = {
  presets: ["@haaretz/htz-react-base/babel.js"],
}

plugins and presets can be added to individual packages as required.

Next Config (including webpack)

The basic next configuration have been modularized and moved to htz-react-base/base-next-config. The entire base config can be imported with require('@haaretz/htz-react-base/base-next-config. Additionaly, the config's different parts can be imported with require('@haaretz/htz-react-base/base-next-config/<sub-module>.

Commands

build

Build production distributable files. For apps, this will involve running the Next.js build process. For libraries, this will usually involve running Babel and/or webpack.

clean

Remove built distribution files and the Jest cache directory.

commitizen

Run commitizen to assist with writing standard-conferment commit messages.

distFlowTypes

Copies the src/index.js file index.js.flow in the package root, so that Flow typings are available for package consumers.

flow

Run the Flow typechecker. Initializes the package to use flow if not already initialized. For only initializing the package without running any checks, run with the --no-run flag

format

Format code in the current directory with Prettier. You should do this before opening any pull request that contains code, for consistency.

lint

Lint code in the current directory with ESLint. See eslint.js for the default rules.

styleguide

Run the styleguide development server, which renders previews and documentation for components found in the package.

styleguide:build

Build a production-ready page rendering the component styleguide for the module. The output will be written to dist/styleguide.

test

Run the package’s test suite with Jest.

update-scripts

Update the scripts field in package.json to contain aliases for htz-scripts commands. Use --no-overwrite to avoid clobbering any existing scripts with the same name.

Development

Before opening a pull request for this package, make sure to run the lint, format, and test scripts as necessary.

To add scripts to this module, place them in /scripts. The command will be mapped to a file of the same name. Commands namespaced with a : character are mapped to subdirectories. For example:

| Command | File | |---------|--------------------------------------------| | foo | scripts/foo.js or scripts/foo/index.js | | foo:bar | scripts/foo/bar.js |