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

taro-create-page

v0.0.8

Published

taro 编译插件 自动根据设置的pages 生成项目模板路径 用于项目初始化等

Downloads

4

Readme

Taro小程序根据配置的路径生成初始化的模板

  • 支持生成class 和 hooks 的模板
  • 检测配置改动自动生成
  • 直接taro插件配置

用法

> npm install -D  taro-create-page

默认生成 是class 组件模板

//在项目 config/index.js配置
const AutoCreatePage = require('taro-create-page')

{
...

  plugins: [
    new AutoCreatePage()
  ]

...
}

如果需要初始化生成hooks 模板 请在你的项目路径配置后面加上注释

...

 config: Config = {
    pages: [
      'pages/index/index', /* 首页 */
      'pages/exchange/index', /* 我的变化 */
      'pages/login/index', /* 登录 ishooks*/
      'pages/my-reward/index',
      'pages/rank/index', /* 排行榜 */
      'pages/result/index', /* 题目分数 */
      'pages/topic/index' /* 题目首页 */

    ]

  ...

上面 路径后面的注释 包含中文便是新建模板的navigationBarTitleText, 否则默认路径

适用于项目初始化 设计好目录路径结构 自动 生成目录路径 原有项目开发的时候 不需要新建文件夹 模板 然后 再去添加路径 自动完成