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 🙏

© 2025 – Pkg Stats / Ryan Hefner

topolr-builter

v1.2.3

Published

build the projects which develop by the topolr web framework.

Readme

topolr-builter

Build Status npm version npm license

build the projects which develop by the topolr web framework.

Useage

Useage:
    version      builter version
    build <type>
                 build the project in different ways
                 --pub : build project in publish mode
                 --pub-all : build project in publish mode
                 --dev : build project in publish mode
                 --dev-all : build project in develop mode
    develop      code and debug the project
    init         make topolr-builter-config.js file

Install

> npm install topolr-builter -g

Init the config

> topolr-builter init

该命令执行后会在当前目录(项目目录)创建topolr-builter-config.js文件,编辑该文件便可以使用

测试开发项目

> topolr-builter develop

该命令会监听项目文件的变化然后自动重构项目,同时打开socket端口,用于远程inspect

构建项目

> topolr-builter build --pub

构建发布项目,文件使用hash进行版本追踪

Options

/*
 * topolr-builter version 1.0.0
 * built product developed by topolr web framework
 * topolr-builter-config:
 *   basePath      - app base path
 *   bootPacket    - app boot packet
 *   bootFolder    - app top packet folder
 *   develop       - develop mapping,when trigger develop
 *   publish       - develop mapping,when trigger publish
 *   output        - output folder,relative basePath
 *   pageTemp      - boot index page,relative basePath
 *   outMap        - out map file is or not make
 *   devport       - develop mode will open a socket service to connect to chrome extension
 *   ignore        - scan without files
 *       -default:['*.DS_Store','*.*___jb_tmp___']
 *   maker         - custom maker mapping
 *       -like:{makerName:function(content,option,done){
 *                   done(dosomethind(content,option));
 *              }}
 *       -default maker:
 *         'jsmaker','lessparser','sassparser','cssmaker','cssprefixmaker'
 *         'htmlmaker','mdparser','jsonmaker','templatemaker','babelmaker'
 *   makerOption   - custom maker option {makerName:{}}
 *   sequnce       - make sequnce
 *       -default sequnce:
 *          js:['jsmaker']
 *          css:['cssprefixmaker','cssmaker']
 *          less:['lessparser','cssprefixmaker','cssmaker']
 *          scss:['sassparser','cssprefixmaker','cssmaker']
 *          md:['mdparser','htmlmaker']
 *          html:['htmlmaker']
 *          json:['jsonmaker']
 *          template:['templatemaker']
 *          babel:['babelmaker','jsmaker']
 *   outmapSequnce - out map file make sequnce
 *       -default outmapSequnce:
 *          js:{step:['jsmaker'],to:'js'}
 *          css:{step:['cssprefixmaker','cssmaker'],to:'css'}
 *          less:{step:['lessparser','cssprefixmaker','cssmaker'],to:'css'}
 *          scss:{step:['sassparser','cssprefixmaker','cssmaker'],to:'css'}
 *          md:{step:['mdparser','htmlmaker'],to:'html'}
 *          html:{step:['htmlmaker'],to:'html'}
 *          json:{step:['jsonmaker'],to:'json'}
 *          babel:{step:['babelmaker','jsmaker'],to:'json'}
 */