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

rca

v0.0.36

Published

richard react 脚手架

Downloads

58

Readme

rca

个人使用的脚手架,如果需要在企业内部使用,请慎重。

Getting Started

install

npm install -g rca

create app

rca create app

options

outPutDir

Type: string

Default: "dist"

打包目录

publicPath

Type: string

Default:"/"

和webpack publicPath 一样,当需要配置cdn地址的时候可能需要手动配置,一般不需要改变

assetsDir

Type: string

Default:"assest"

静态资源打包目录。注意和outPutDir 的区别

entry

打包入口文件,具体配置指南可以查看webpack entry配置

pages

当接收到一个对象的时候,将会认为是多页应用打包

entry:{
  index:{
		// 页面入口
		entry: path.resolve(process.cwd(), 'src/index.tsx'),
		// 页面模板文件,如果没有配置则默认指向public index.html
		template: path.resolve(process.cwd(), 'public/index.html'),
		// 文件名,默认取key
		filename: 'index.html',
		// 页面标题 默认取 key
		title: 'Index Page',
		//包含的模块文件 默认是key
		chunks: ['index'],
	},
  ...
}

alias

devtool

默认在 开发环境选用"cheap-module-source-map",生产环境使用false

externals

extraPlugins

额外的webpack插件

hash

inlineLimit

配置图片文件是否走base64的编译的阈值

extraBabelPresets

extraBabelPlugins

配置额外得babel插件,例如使用bable-plugin-import

extraBabelPlugins: [
    [
      'import',
      {
        libraryName: 'antd',
        style: 'css',
      },
    ],
  ]

analyze

打包资源分析,使用得是webpack-bundle-analyzer插件

autoprefixer

cssLoader

lessLoader

styleLoader

sassLoader

postCssLoader

extraPostCSSPlugins

copy

targets

 process.env.NODE_ENV === "development"
      ? "last 1 version"
      : ["> 1%", "ie 11"],