1.0.4 • Published 12 years ago

contentmapper v1.0.4

Weekly downloads
6
License
-
Repository
github
Last release
12 years ago

#Content Mapper

Take content from one file, or url, and map it to another via a template.

##Usage

Simple example:

Grab the top headline from Reddit and put it into a message.

`var contentUrl = "http://www.reddit.com";
var mappingFcn = function($){
return { headline: $('.content .spacer:last .entry:first a:first').text() };
};
var templateFcn = function(){
return "Top Reddit headline: <%= headline %>!";
};

contentMapper(contentUrl, {
mappingFn: mappingFcn,
template: templateFcn
},function(err,res){ console.log(res); });
`

##Install

npm install contentmapper

1.0.4

12 years ago

1.0.2

12 years ago

1.0.1

12 years ago

1.0.0

12 years ago