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

generator-abiz-react-app

v0.0.8

Published

abiz-react-app scaffold

Downloads

3

Readme

Abiz React Scaffold

百卓react脚手架

技术栈

  • react
  • react-router
  • redux
  • css modules
  • 按需加载
  • 热加载

安装

generator-abiz-react-app脚手架基于yeoman开发,所以需要先安装yeoman

全局安装yeomangenerator-abiz-react-app

npm install -g yo generator-abiz-react-app

创建项目目录

//创建项目文件夹
mkdir [projectName]

//进入项目文件夹
cd [projectName]

生成项目

yo abiz-react-app

启动项目

npm run dev

命令

npm run dev //开发模式
npm run build //生产环境打包

目录结构

├── config                          # 配置,包括webpack
├── public
│   ├── favicon.png                 # Favicon
│   └── index.html                  # html模板文件
├── src
│   ├── components                  # 业务通用组件
│   ├── entry                       # webpack对应的入口文件,如果为文件,入口js的名称则为文件名称;
|   │                                 如果为文件夹,入口js的名称为文件夹名称,入口js文件的内容为index.jsx(必须叫index.jsx)的内容
│   ├── images                      # 图片
│   ├── pages                       # 业务页面入口
│   ├── router                      # 路由相关
│       ├── asyncLoad.jsx           # 页面按需加载组件
│       ├── index.jsx               # 路由根组件(入口js文件到这里)
│       ├── renderRoutes.jsx        # 路由渲染劫持组件(此处可以做一些权限,路由重定向之类的控制)
│       ├── routes.jsx              # 路由集中定义
│       ├── spa|spa2                # 与index.jsx一样(spa和spa2分别为另外的单页应用根组件)
│       ├── spaRoutes|spa2Routes    # 与routes.jsx一样(spaRoutes和spaRoutes2分别为另外的单页应用路由定义)
│   ├── styles                      # 全局样式
│   ├── utils                       # 工具库
│       ├── axios.js                # 异步请求方法,所有异步请求均调用该方法(此处可以对请求以及响应做一些统一的设置)
│       ├── reduxSimpleAsync.js     # 可以简化异步请求action和reducer的redux中间件
│   └── store.js                    # redux全局状态汇总文件
├── .babelrc                        # babel配置文件
├── package.json

package.json文件配置

webpackConfig配置相关:

  • port: 开发环境服务端口(webpack-dev-server端口)
  • devApiPath: npm run dev 模式下请求的接口基础路径,如果希望通过mock平台调试直接把这个url换成mock平台的接口即可
  • assetsPath: 静态资源在的基础路径
  • distApiPath: npm run build 模式下请求的接口基础路径