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

nero_cho

v1.1.0

Published

Fast to creat directories and files with template files.

Downloads

4

Readme

#nero_cho

根据模块化需要,实现的一个根据模板快速生成项目文件的工具

git

如何使用

下面是我的一个项目结构的一部分:

someproject
	|--src
        |--app
            |--componets
            |--pages
            	|--user
        |--template
            |--module
                |--index.js
                |--module.directive.js
                |--module.layout.styl
                |--module.skin.styl
                |--module.html
            |--page
                |--index.js
                |--page.controller.js
                |--page.router.js
                |--page.layout.styl
                |--page.skin.styl
                |--page.html
	|--nerofile.json
	|--package.json
	|--gulpfile.js
	|--README.md
  • 安装

    npm install nero_cho -g
  • 在项目根目录创建模版文件夹template,这里只列举template=>page=>index.js文件的内容,{name}为替换标志,区分大小写

    'use strict';
    
    var {name}Controller = require('./{name}.controller');
    var {name}Html = require('./{name}.html');
    
    require('./{name}.skin.styl');
    require('./{name}.layout.styl');
    
    var mod = angular.module('{name}', [])
        .controller('{Name}Controller', {name}Controller);
    
    module.exports = {
        module: mod,
        html: {name}Html,
        controller: {name}Controller
    };
  • 在项目根目录添加 nerofile.json配置模版和生成文件的目录

    {
      "module": "./src/app/components",
      "page":"./src/app/pages",
      "tpl":"./src/template"
    }
  • 执行

    nerocho page user purviewActivity
    // {name} --> purviewActivity
    // {Name} --> PurviewActivity
  • 效果

    someproject
    	|--src
            |--app
                |--componets
                |--pages
                	|--user
                		|--purviewActivity
                			|--index.js
                			|--purviewActivity.controller.js
                			|--purviewActivity.router.js
                			|--purviewActivity.layout.styl
                			|--purviewActivity.skin.styl
                			|--purviewActivity.html
            |--template
                |--module
                    |--index.js
                    |--module.directive.js
                    |--module.layout.styl
                    |--module.skin.styl
                    |--module.html
                |--page
                    |--index.js
                    |--page.controller.js
                    |--page.router.js
                    |--page.layout.styl
                    |--page.skin.styl
                    |--page.html
    	|--nerofile.json
    	|--package.json
    	|--gulpfile.js
    	|--README.md

    pages=>user=>purviewActivity=>index.js

    'use strict';
    
    var purviewActivityController = require('./purviewActivity.controller');
    var purviewActivityHtml = require('./purviewActivity.html');
    
    require('./purviewActivity.skin.styl');
    require('./purviewActivity.layout.styl');
    
    var mod = angular.module('purviewActivity', [])
        .controller('PurviewActivityController', purviewActivityController);
    
    module.exports = {
        module: mod,
        html: purviewActivityHtml,
        controller: purviewActivityController
    };

CHANGE

1.0.5 修复MAC OS下执行错误问题

1.0.9 更新文档