# MIP 页面抓取工具




```
var crawler = new Crawler();

crawler.doCrawl(url)
		.then(function(html) {
				cosole.log(html);	
		})
		.catch(function(error) {
				console.log(error);	
		})
```
