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

wangjs

v1.0.0

Published

WangJs develops a lightweight MVC framework based on express pure JavaScript

Downloads

3

Readme

Wang.js mvc框架

Wang.js 基于express 纯js研发的轻量级mvc框架。基于函数式编程思想,性能优越,代码清晰,流程易读,可持续维护高。

特性

  • 基于express
  • 支持es6语法
  • 模块化
    • 支持多模块路由
    • 支持多模块视图
    • 支持多模块控制器
    • 支持多模块服务
  • 插件化
  • 轻量级(核心代码300行内)
  • 长期维护

规范 遵循约定优于配置

|- app
    |- config 配置
    |- module 模块1
        |- module1 模块1
            |- controller 控制器
            |- service 服务模型
            |- view 视图模板
            |- router.js 路由
        |- module2 模块2
            |- controller 控制器
            |- service 服务模型
            |- view 视图模板
            |- router.js路由
    |- extend 扩展
    |- middleware 中间件
    |- plugin 插件
    |- public 静态文件
|- index.js

初始化流程

  • 初始化
  • 加载配置
  • 加载模块
    • 加载service
    • 加载controller
    • 加载router
  • 加载extend
  • 加载plugin
  • beforeStart() 挂在从数据库获取的配置合并到配置文件中
  • run() 启动服务

官网

基于Wangjs开发的cms系统 网址:https://www.chancms.top

特点

  • 配置文件
  • 多模块mvc
  • 数据库支持
  • 路由控制
  • art-template模板
  • 静态资源
  • cookie
  • 日志功能

运行

const Wang = require('wangjs'); 
const app =  new Wang();
app.run();