New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

node-aop

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-aop

node-aop is a aop helper library for JavaScript, can be run inside Node.js or in a browser.

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

aop.js

aop.js is a simple aop, can be run inside Node.js or in a browser.

##install In a browser

<script type="text/javascript" src="aop/aop.js"></script>

In Node, use NPM to install:

npm install node-aop

Note that the package name is node-aop; the name “aop” was already taken.

##Usage

var aop = require("node-aop");// Node.js require. Use window.aop in browser

var obj = {
  url:"",
	get : function(key){
		return this["key"];
	},
	set : function(key, value){
		this["key"] = value;
	} 
};

var h1 = aop.before(obj, "set", function(key, value){
	value += " before-1 ";
	return [key, value]; // modify the parameters, 
});

var h2 = aop.before(obj, "set", function(key, value){
	value += " before-2 ";// do not modify the parameters
});
// before
obj.set("url", "http://mojijs.com");
console.log( obj.get("url") );  // http://mojijs.com before-1


var h3 = aop.after(obj, "get", function(value){
	value += " after-1 "; // do not modify the return value
});

var h4 = aop.after(obj, "get", function(value){
	value += " after-2 "; 
	return value; // modify the return value
});

// after
console.log( obj.get("url") ); //http://mojijs.com before-1  after-2  



// rmmove 
h1.remove();
h4.remove();

obj.set("url", "http://google.com");
console.log( obj.get("url") ); // http://google.com 

Keywords

FAQs

Package last updated on 13 Apr 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc