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

j-webpack

v1.0.7

Published

j-webpack 统一配置

Downloads

1

Readme

j-webpack 配置

j-webpack 统一配置

如何使用

1.安装

    npm i j-webpack -D

2.配置

在项目的根目录中创建或修改 [ webpack.config.js ] 为以下内容

    const path = require('path');

    module.exports = require('j-webpack')(path.resolve(__dirname, './'));

在项目的根目录中创建或修改 [ config.js ] 为以下内容

    module.exports = {
        component: false, //是否组件模式
        framework: 'vue', //项目使用的框架,可选vue , angular or react
        // webpack server 配置
        devServer: {
            host: 'localhost',
            proxy: {
                '/dev': {
                    target: 'http://xxx/',
                    changeOrigin: true,
                    pathRewrite: {
                        '^/dev': ''
                    }
                }
            }
        }
    }

3.添加依赖包

在 [ package.json ] 中的 [ devDependencies ] ,添加以下内容

    "@babel/core": "^7.0.0",
    "@babel/plugin-external-helpers": "^7.0.0",
    "@babel/plugin-proposal-class-properties": "^7.0.0",
    "@babel/plugin-proposal-decorators": "^7.0.0",
    "@babel/plugin-proposal-export-namespace-from": "^7.0.0",
    "@babel/plugin-proposal-function-sent": "^7.0.0",
    "@babel/plugin-proposal-json-strings": "^7.0.0",
    "@babel/plugin-proposal-numeric-separator": "^7.0.0",
    "@babel/plugin-proposal-throw-expressions": "^7.0.0",
    "@babel/plugin-syntax-dynamic-import": "^7.0.0",
    "@babel/plugin-syntax-import-meta": "^7.0.0",
    "@babel/plugin-transform-runtime": "^7.0.0",
    "@babel/polyfill": "^7.0.0",
    "@babel/preset-env": "^7.0.0",
    "@babel/preset-stage-2": "^7.0.0",
    "@types/node": "^10.12.18",
    "autoprefixer": "^9.0.0",
    "babel-loader": "^8.0.0",
    "babel-plugin-import": "^1.7.0",
    "babel-plugin-transform-vue-jsx": "^3.7.0",
    "chalk": "^2.4.1",
    "clean-webpack-plugin": "^0.1.19",
    "cross-env": "^5.1.4",
    "css-loader": "^1.0.0",
    "file-loader": "^2.0.0",
    "html-webpack-plugin": "^3.2.0",
    "mini-css-extract-plugin": "^0.4.0",
    "node-sass": "^4.8.3",
    "postcss-loader": "^3.0.0",
    "replace-in-file-webpack-plugin": "^1.0.6",
    "sass-loader": "^7.0.1",
    "shelljs": "^0.8.2",
    "style-loader": "^0.23.1",
    "ts-loader": "^5.3.3",
    "typescript": "^3.2.4",
    "url-loader": "^1.0.1",
    "webpack": "^4.6.0",
    "webpack-bundle-analyzer": "^3.0.3",
    "webpack-cli": "^3.0.8",
    "webpack-dev-server": "^3.1.3",
    "webpack-merge": "^4.1.2"

4.添加不同的依赖包(修改项目的 package.json),应对不同框架(vue,angular,react),现阶段只支持vue

4.1 vue + vue-router

在 [ devDependencies ] ,添加以下内容

    "vue-loader": "^3.0.1",
    "vue-style-loader": "^4.1.0",
    "vue-template-compiler": "^2.5.16",

4.2 react

在 [ devDependencies ],添加以下内容

    "@babel/preset-react": "^7.0.0",

5.添加运行命令 package.json

在 [ scripts ] ,添加以下内容

    "dev": "cross-env NODE_ENV=dev webpack-dev-server --progress",
    "build": "cross-env NODE_ENV=build webpack --progress"

6.新建typescript配置文件(项目根目录下) tsconfig.json

{
    "include": [
        "src/*.ts",
        "src/**/*.ts"
    ],
    "extends": "./node_modules/j-webpack/tsconfig",
}

7.安装,运行,打包

    npm i
    npm run 
    npm build

注意:windows下默认打开 ip 0.0.0.0 会 404 ,改成当前的ip地址就可以了。

update

 0.0.6 修复js缓存问题
 0.0.7 增加依赖包版本检查
 0.0.8 增加html-loader,支持angular
 0.0.9 生成文件增加hash
 0.0.10 修改babel-loader
 0.0.12 fix babel-loader bug
 0.0.13 change:打包不删除dist文件夹
 0.1.0 恢复依赖包版本检查
 0.1.1 修复img直接引入问题,package.js 中 devDependencies 需添加"replace-in-file-webpack-plugin": "^1.0.6",
 0.1.2 修复js版本后缀
 1.0.0 支持typescript ,升级babel 7,增加组件模式(不会分离css,img,js)
 1.0.4 修复[typescript 错误:无法写入xxx,因为会被覆盖]的问题
 1.0.5 修复vue bug
 1.0.7 去除check-versions,增加对react的支持