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

base-extend-backbone

v0.1.4

Published

基于backbone的扩展

Downloads

14

Readme

base-extend-backbone

Build Status Coverage Status

How Install

i recommended using npm info check base-extend-backbone version and using npm install base-extend-backbone

npm install base-extend-backbone
var base = require('base-extend-backbone');
var BaseModel = base.Model;
var BaseView = base.View;
var BaseRouter = base.Router;
var ManagedObject = base.ManagedObject;
var storage = base.storage

How Use it

base-extend-backbone只支持require方式载入,所以你必须从npm上下载,并使用构建工具来处理它。

recommended build kit:webpack

base-extend-backbone 是基于backbone的一个扩展,理论上来说你使用原始的backbone来构建你的应用与此扩展并不冲突,如果你想使用此扩展,那么你将拥有一个完整的View生命周期基于Router的生命周期,本地缓存的操作和便捷操作Model的实例方法。

在此扩展中需要依赖两个Tag Key关键字:

var tplEng = require('tplEng');

base.View针对模板渲染部分引入了一个第三方库为artTemplate

var Config = require('config');

引入一个配置文件来开启相应的警告信息,完整的config

var config = {
    scheme: 'alpha',
    env:{
        alpha:{
            'url_prefix':'http://127.0.0.1:8081'
        },
        beta:{
            'url_prefix':'http://beta.com:8081'
        },
        release:{
            'url_prefix':'http://aip.com'
        }
    }
};
module.exports = config;
  • scheme 定义你请求的环境,alpha为初始环境(本地mock),beta为测试环境(测试服务器),release为生产环境(最终部署)

这意味着你需要在构建脚本中启用configtplEng两个别名分别对应artTemplate你的config.js配置文件。

base.View Life Cycle

base.Router Life Cycle as base.View

Fetch Info

@icepy MIT