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

@evolify/react-scripts

v1.5.2

Published

Scripts to run / build React project with zero or any configuration.

Downloads

1

Readme

react-scripts

Scripts to run / build React project with zero or any configuration.

Install:

Install to your project npm i -S -D @evolify/react-scripts

or install global npm i -g @evolify/react-scripts;

Usage:

All you need just a root '.jsx' component in your project root or src;

// App.jsx 
import React from 'react'

export default function App(){
  return (
    <div>Powered by @evolify/react-scripts.</div>
  )
}
  1. Run in development:

    miot-react-scripts dev [comp-path]

    if you want to use src/Demo.jsx as the root component, just run miot-react-scripts dev src/Demo.jsx, if no comp-path provided, any one of index.jsx?src/index.jsx?App.jsx?src/App.jsx? will be used as the root component.

  2. Build in production:

    miot-react-scripts build [comp-path]

Configuration:

By default , miot-react-scripts will work well without any configuration. sasspostcssreact-hot-loader@babel/proposal-decorators@babel/proposal-class-properties@babel/plugin-syntax-dynamic-import are built in.

You can still config what you want in react-scripts.config.js file in your project root dir.

/**
 * Add this to enable vscode intellisence.
 * 
 * @type {import('@evolify/react-scripts')}
 */
module.exports = {
  {
    template: path.join(__dirname, 'public/index.html'), // html template, built in miot-react-scripts by default.
    outputDir: path.join(process.cwd(), 'build'),
    entry: path.join(__dirname, '../public/index.jsx'), // the same to webpack.entry, built in.
    publicPath: process.env.NODE_ENV === 'production' ? '//cdn.xxx.com': '', // deafult is ''
    app: '', // root component, can also be set as a param in miot-react-scripts
    typescript: false, // if you want to use ts, set this option to `true`
    mobile: false,
    webpack: {
      devServer: {
        port: 3000,
        host: '0.0.0.0',
        proxy: {
          
        }
      },
    },
    babel: {},
    postcss: {}
  }
}

webpack 、 babel、postcss, just follow the official doc, now only support object type.

CSS Module

By default you can enable css module just to name you css/scss file to style.module.css / style.module.scss