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

lsr-tooling

v1.1.1

Published

Generic tooling for JS apps

Downloads

4

Readme

LSR Tooling

Generic tooling for JS apps. Included guides:

  • Auto-formatting tool (Prettier)
  • Linting tool (ESLint)
  • Testing library (Jest)
  • Styling library (Material UI)
  • Static compilation library (React Static)
  • Static hosting (Netlify)
  • Configs (e.g. git)

Purpose

Rather than providing a "boilerplate app" to start from, this is instead formatted as a guide that can be used for new AND existing apps, as well as tracking changes to help upgrade old apps.

It can be use by anyone, though I customized the style to my personal preferences.

Usage

Install basic tools

  1. npx install-peerdeps --dev --yarn lsr-tooling

  2. Add to your package.json:

      "scripts": {
        "format": "prettier --write '*.{js,md}' --write '{src}/**/*.{js,md}'",
        "lint": "eslint --ext .js .",
        "clean": "rm -rf build dist artifacts tmp"
      },
      "prettier": {
        "singleQuote": true,
        "trailingComma": "all",
        "proseWrap": "always"
      },
      "husky": {
        "hooks": {
          "pre-commit": "pretty-quick --staged"
        }
      },
      "browserslist": [
        "defaults",
        "not IE 11",
        "maintained node versions"
      ]
  3. Copy in .eslintrc

  4. Copy in .gitignore

Optional next steps

Test with Jest

  1. yarn add --dev --exact jest jest-watch-typeahead react-test-renderer (automatically includes babel-jest)

  2. Add to your package.json:

      "scripts": {
        "test": "jest",
      },
      "jest": {
        "roots": [
          "<rootDir>/src"
        ],
        "testMatch": [
          "<rootDir>/src/**/*.test.js"
        ],
        "transform": {
          "\\.js$": "babel-jest",
          "\\.css$": "<rootDir>/config/jest/cssTransform.js",
          "^(?!.*\\.(js|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
        },
        "watchPlugins": [
          "jest-watch-typeahead/filename",
          "jest-watch-typeahead/testname"
        ],
        "resetMocks": true
      },
  3. Copy in config/jest transformers

Style with Material UI

  1. yarn add --exact @material-ui/core @material-ui/icons fontsource-roboto

  2. Use it:

    import {
      createMuiTheme,
      ThemeProvider,
      CssBaseline,
      makeStyles,
    } from '@material-ui/core';
    import 'fontsource-roboto';
    
    const theme = createMuiTheme({
      // https://material-ui-next.com/customization/themes/#typography
      typography: {
        // Account for base font-size of 62.5%.
        htmlFontSize: 10,
      },
    });
    
    const useStyles = makeStyles({
      /* ... */
    });
    
    const App = () => {
      const classes = useStyles();
    
      return (
        <ThemeProvider theme={theme}>
          <CssBaseline />
          {/* ... */}
        </ThemeProvider>
      );
    };
    
    export default App;
    html {
      height: 100%;
    
      /* 1 em = 10 px by default. */
      font-size: 62.5%;
    }
    
    body {
      position: relative;
    
      min-height: 100%;
      margin: 0;
      padding: 0;
    
      /* Re-enlarge fonts as fallback in case MUI doesn't load properly. */
      font-size: 1.4rem;
      font-family: Roboto, sans-serif;
    
      /* Always show vertical scrollbar to prevent jumpy navigation. */
      overflow-y: scroll;
    }

Render with React Static

  1. Create a template app: npx react-static create
  2. Either use their template directly or copy in core files; add to your package.json:
     "scripts": {
       "start": "react-static start",
       "build": "react-static build",
       "stage": "yarn run build --staging && serve dist -p 3000",
       "analyze": "yarn run build --analyze"
     },
  1. Integrate with MUI (docs):

    // plugins/jss-provider/node.api.js
    import { ServerStyleSheets } from '@material-ui/core';
    
    export default () => ({
      beforeRenderToHtml: (App, { meta }) => {
        // eslint-disable-next-line no-param-reassign
        meta.muiSheets = new ServerStyleSheets();
        return meta.muiSheets.collect(App);
      },
    
      headElements: (elements, { meta }) => [
        ...elements,
        meta.muiSheets.getStyleElement(),
      ],
    });
    // static.config.js
    // Docs: https://github.com/react-static/react-static/blob/master/docs/config.md
    export default {
      plugins: ['jss-provider'],
    
      /* eslint-disable react/prop-types */
      Document: ({ Html, Head, Body, children }) => (
        <Html lang="en">
          <Head>
            <meta charSet="utf-8" />
            <meta
              name="viewport"
              content="width=device-width, initial-scale=1, minimum-scale=1, shrink-to-fit=no"
            />
    
            <title>Foo</title>
    
            {/* Favicon: https://realfavicongenerator.net/ */}
            {/* Open Graph markup: https://developers.facebook.com/tools/debug/og/object/ */}
            {/* Analytics: https://matomo.org/ */}
          </Head>
    
          <Body>
            <noscript>You need to enable JavaScript to run this app.</noscript>
            {children}
          </Body>
        </Html>
      ),
      /* eslint-enable */
    };

Deploy with Netlify

  1. yarn add --dev --exact netlify-cli
  2. Add to your package.json:
     "scripts": {
       "deploy": "yarn run build && netlify deploy"
     },

Independent dependencies (optional)

If you want to pick and choose your tools instead of getting them all at once:

Code auto-formatting

  1. yarn add --dev --exact prettier husky pretty-quick
  2. Modify package.json as described in Usage

Linting

  1. Follow the short instructions at eslint-config-cooperka