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

@dobettest/scaffold

v0.1.8

Published

A tool to help web developer build env

Downloads

38

Readme

简介

@dobettest/scaffold是一个工具集合,包括github模版添加、初始化项目、加速下载等,webpack支持项目开发和打包优化,内置了对vuereact的项目支持,使用环境变量[scss,less,typescript,micro,aegis、publicPath、prettier]轻松开启相关配置,按需加载,用户只需要关心核心业务的编写。

一、安装

npm install @dobettest/scaffold --save-dev

二、命令

一、start

(1)、dev运行

wrench start dev

二、template

(1)、添加模版

wrench tempate add

(2)、移除模版

wrench tempate remove

(3)、列出所有模版

wrench tempate list

(4)、使用模版创建项目

wrench tempate init

注意

从0.0.5版本开始,为了降低用户的使用成本,所需要的一些必要依赖,需要用户根据需要进行自定义安装,如下的依赖不是强制使用版本也不是必须安装的,用户可以根据提示进行缺失依赖安装和升级新版本。 推荐:

一、vue支持

1)、2.0版本需要的依赖:

npm install vue-laoder@15 -D \
npm install vue-template-compiler -D \
npm install eslint-plugin-vue -D

2)、3.0版本需要的依赖:

npm install vue-laoder@17 -D \
npm install eslint-plugin-vue -D

二、sass/scss支持

npm install sass-loader^12.6.0 \
npm install sass^1.51.0

三、less支持

npm install less-loader

四、关于其他配置

!!!! 不推荐在package.json中去配置eslint等选项,重复的配置可能导致问题

五、需要改进的问题

对于一些文件仍然需要需要进行手动的导入,比如qiankun中的public-path文件,这个问题可能将在下一个版本进行修复,尽请期待。