这是一个针对 Node.js 方面的ApplicationContext,作用于全局应用的Key-Value的Setter与Getter,并同时具有事件触发响应,重点解决在开发Node.js应用时,缺少良好应用级别的全局变量控制或者配置。
npm install applicationcontext --save
var AppContext = require('applicationcontext');
set([key,]value)
key {String}, Optional : 键,形式为 'a.b.c'
value {AnyType} : 如果没有key参数,那么这里可以使用原型对象,但是千万要注意的是原型对象中的key绝对不能是'a.b.c'这样的结构,否则get会返回undefined
AppContext.set("username","Jimmy Song"); console.log(AppContext.get("username")); //Use Plain Object like this AppContext.set({ session : { name : "user", expire : 3000 }, // do not name key that look like 'a.b.c', it's error "local.name" : "good" }); console.log(AppContext.get("session.name")); // output : user console.log(AppContext.get("local.name")); // output : undefined
get(key)
key {String} : e.g AppContext.get('username'); or AppContext.get('session.name')
remove(key)
clear()
on(key,listener)
// 为某个键添加监听 AppContext.on('session.name',function(value,message){ // 这里的value是key对应的值,而message是触发事件时可选的消息 console.log("the value is ",value); console.log("and extra message is ",message); });
emit(key,message)
// 触发事件时,传递的如下的消息 AppContext.set('session.name','Freeman'); AppContext.emit('session.name','hi, there is extra information, just tell you the session.name value is changed');
off(key [ , listener ] )
// Remove the specified listener for 'session.name' AppContext.off('session.name',listener); // Remove all listener for 'session.name' AppContext.off('session.name');
ApplicationContext for Node.js 详细介绍 介绍 这是一个针对 Node.js 方面的ApplicationContext,作用于全局应用的Key-Value的Setter与Getter,并同时具有事件触发响应,重点解决在开发Node.js应用时,缺少良好应用级别的全局变量控制或者配置。 如何使用 npm install applicationcontext --sav
Engineering Jon Brisbin May 03, 2011 Traditionally, applications have been defined by the principle technology they use. If you’re building a Spring MVC application, we call it a “Java app”. Since our
Bearcat是一个来自于网易的基于POJOs进行开发的应用层框架, Bearcat提供了一个轻量级的容器来编写简单,可维护的node.js. Bearcat 提供了一个基础的底层来管理应用逻辑对象,使得开发者就可以把精力放在应用层的逻辑编写上. Bearcat 使开发者编写“简单纯粹的javaScript对象”(POJO), 并且不会侵入这些POJO,你完全可以在不使用Bearcat的环