1.0.0 • Published 9 years ago
salaries-indeed v1.0.0
salaries-indeed
Salaries for job titles in zip codes scraped from indeed.com.
var salary = require("salaries-indeed");
salary
	.of("developer", 31419)
	.and("programmer", 31419)
	.and("it project manager", 31419)
	.then(function(err, result) {
		// {
		// 	"currency": "USD",
		// 	"updated_last": 1444363200000,
		// 	"salaries": [
		// 		{
		// 			"what": "developer",
		// 			"where": 31419,
		// 			"salary": 97000
		// 		},
		// 		{
		// 			"what":  "programmer",
		// 			"where": 31419,
		// 			"salary": 85000
		// 		},
		// 		{
		// 			"what":  "it project manager",
		// 			"where": 31419
		// 			"salary": 84000
		// 		}
		// 	]
		// }
	});