Node.js模块CronShot.zip

时间:2022-08-08 02:22:38
【文件属性】:

文件名称:Node.js模块CronShot.zip

文件大小:12KB

文件格式:NONE

更新时间:2022-08-08 02:22:38

开源项目

CronShot 是 Node.js 模块,用来调节,获取,修改和存储 Web 页面截图的。安装:npm install cronshot示例:var cronshot = require('cronshot'),   middleware = {     'local': require('cronshot-local')   }; // Local File Example // ------------------ // Takes a screenshot of sports.yahoo.com, // and saves the screenshot to the local file system // Save Local File Example cronshot.startCapturing({   // The webpage URL that you would like to take a screenshot of   'url': 'http://sports.yahoo.com',   // The local path where you would like to save the image   'path': __dirname,   // Only takes one screenshot   'cronPattern': false,   // What middleware functions to use each time a screenshot is taken   'saveMiddleware': [middleware.local] }, function(err) {   // optional callback function once all screenshots have been taken   if (err) {       console.error(err);   } }); 标签:CronShot


【文件预览】:
cronshot-master
----LICENSE.txt(1KB)
----src()
--------modules()
--------index.js(269B)
----README.md(12KB)
----tests()
--------unit()
----.gitignore(71B)
----package.json(1KB)

网友评论