Node.js에서 Phantomjs를 사용하는 방법은 그렇게 어려운작업은 아니다.
var childProcess = require('child_process');
var phantomjs = require('phantomjs');
var binPath = phantomjs.path;
var path = require('path');
var childArgs = [
path.join(__dirname, 'loadPage.js')
];
// 앞서 작성한 loadPage.js파일과 같은 파일이다.
// 작성할 예제와 같은폴더에 loadPage.js가 있어야 한다.
childProcess.execFile(binPath, childArgs, function(err, stdout, stderr) {
console.log('seccess');
});
이처럼 작성하고 main.js로 저장하자
[Javascript] Date.format 사용하기 (0) | 2023.07.19 |
---|---|
[Phantomjs] Phantomjs를 이용해서 웹페이지 캡쳐하기 (3) (0) | 2023.07.19 |
[Phantomjs] Phantomjs를 이용해서 웹페이지 캡쳐하기 (1) (0) | 2023.07.19 |
[Javascript] Object Prototype 프로토타입 이해하기 (0) | 2023.07.19 |
[Javascript] instanceof 와 typeof (0) | 2023.07.17 |