forked from sindresorhus/capture-website-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cli.js
executable file
·276 lines (255 loc) · 7.58 KB
/
cli.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
#!/usr/bin/env node
import process from 'node:process';
import meow from 'meow';
import captureWebsite from 'capture-website';
import arrify from 'arrify';
import splitOnFirst from 'split-on-first';
import getStdin from 'get-stdin';
const cli = meow(`
Usage
$ capture-website <url|file>
$ echo "<h1>Unicorn</h1>" | capture-website
Options
--output Image file path (writes it to stdout if omitted)
--width Page width [default: 1280]
--height Page height [default: 800]
--type Image type: png|jpeg|webp [default: png]
--quality Image quality: 0...1 (Only for JPEG and WebP) [default: 1]
--scale-factor Scale the webpage \`n\` times [default: 2]
--list-devices Output a list of supported devices to emulate
--emulate-device Capture as if it were captured on the given device
--full-page Capture the full scrollable page, not just the viewport
--no-default-background Make the default background transparent
--timeout Seconds before giving up trying to load the page. Specify \`0\` to disable. [default: 60]
--delay Seconds to wait after the page finished loading before capturing the screenshot [default: 0]
--wait-for-element Wait for a DOM element matching the CSS selector to appear in the page and to be visible before capturing the screenshot
--element Capture the DOM element matching the CSS selector. It will wait for the element to appear in the page and to be visible.
--hide-elements Hide DOM elements matching the CSS selector (Can be set multiple times)
--remove-elements Remove DOM elements matching the CSS selector (Can be set multiple times)
--click-element Click the DOM element matching the CSS selector
--scroll-to-element Scroll to the DOM element matching the CSS selector
--disable-animations Disable CSS animations and transitions [default: false]
--no-javascript Disable JavaScript execution (does not affect --module/--script)
--module Inject a JavaScript module into the page. Can be inline code, absolute URL, and local file path with \`.js\` extension. (Can be set multiple times)
--script Same as \`--module\`, but instead injects the code as a classic script
--style Inject CSS styles into the page. Can be inline code, absolute URL, and local file path with \`.css\` extension. (Can be set multiple times)
--header Set a custom HTTP header (Can be set multiple times)
--user-agent Set the user agent
--cookie Set a cookie (Can be set multiple times)
--authentication Credentials for HTTP authentication
--debug Show the browser window to see what it's doing
--dark-mode Emulate preference of dark color scheme
--launch-options Puppeteer launch options as JSON
--overwrite Overwrite the destination file if it exists
--inset Inset the screenshot relative to the viewport or \`--element\`. Accepts a number or four comma-separated numbers for top, right, left, and bottom.
Examples
$ capture-website https://sindresorhus.com --output=screenshot.png
$ capture-website index.html --output=screenshot.png
$ echo "<h1>Unicorn</h1>" | capture-website --output=screenshot.png
$ capture-website https://sindresorhus.com | open -f -a Preview
Flag examples
--output=screenshot.png
--width=1000
--height=600
--type=jpeg
--quality=0.5
--scale-factor=3
--emulate-device="iPhone X"
--timeout=80
--delay=10
--wait-for-element="#header"
--element=".main-content"
--hide-elements=".sidebar"
--remove-elements="img.ad"
--click-element="button"
--scroll-to-element="#map"
--disable-animations
--no-javascript
--module=https://sindresorhus.com/remote-file.js
--module=local-file.js
--module="document.body.style.backgroundColor = 'red'"
--header="x-powered-by: capture-website-cli"
--user-agent="I love unicorns"
--cookie="id=unicorn; Expires=Wed, 21 Oct 2018 07:28:00 GMT;"
--authentication="username:password"
--launch-options='{"headless": false}'
--dark-mode
--inset=10,15,-10,15
--inset=30
`, {
importMeta: import.meta,
flags: {
output: {
type: 'string',
},
width: {
type: 'number',
},
height: {
type: 'number',
},
type: {
type: 'string',
},
quality: {
type: 'number',
},
scaleFactor: {
type: 'number',
},
listDevices: {
type: 'boolean',
},
emulateDevice: {
type: 'string',
},
fullPage: {
type: 'boolean',
},
defaultBackground: {
type: 'boolean',
},
timeout: {
type: 'number',
},
delay: {
type: 'number',
},
waitForElement: {
type: 'string',
},
element: {
type: 'string',
},
hideElements: {
type: 'string',
isMultiple: true,
},
removeElements: {
type: 'string',
isMultiple: true,
},
clickElement: {
type: 'string',
},
scrollToElement: {
type: 'string',
},
disableAnimations: {
type: 'boolean',
},
javascript: {
type: 'boolean',
default: true,
},
module: {
type: 'string',
isMultiple: true,
},
script: {
type: 'string',
isMultiple: true,
},
style: {
type: 'string',
isMultiple: true,
},
header: {
type: 'string',
},
userAgent: {
type: 'string',
},
cookie: {
type: 'string',
isMultiple: true,
},
authentication: {
type: 'string',
},
debug: {
type: 'boolean',
},
darkMode: {
type: 'boolean',
},
launchOptions: {
type: 'string',
},
overwrite: {
type: 'boolean',
},
inset: {
type: 'string',
},
},
});
let [input] = cli.input;
const options = cli.flags;
// TODO: `meow` needs a way to handle this.
options.modules = options.module;
options.scripts = options.script;
options.styles = options.style;
options.cookies = options.cookie;
delete options.module;
delete options.script;
delete options.style;
delete options.cookie;
if (options.launchOptions) {
options.launchOptions = JSON.parse(options.launchOptions);
}
options.headers = {};
for (const header of arrify(options.header)) {
const [key, value] = header.split(':');
options.headers[key.trim()] = value.trim();
}
if (options.authentication) {
const [username, password] = splitOnFirst(options.authentication, ':');
options.authentication = {username, password};
}
if (options.inset) {
const values = options.inset.split(',').map(chunk => Number.parseInt(chunk, 10));
const containsNaN = values.some(number => Number.isNaN(number));
if (containsNaN || ![1, 4].includes(values.length)) {
console.error('Invalid `--inset` value');
process.exit(1);
}
if (values.length === 1) {
options.inset = values[0];
} else {
const insetOption = {};
for (const [index, key] of ['top', 'right', 'bottom', 'left'].entries()) {
insetOption[key] = values[index];
}
options.inset = insetOption;
}
}
options.isJavaScriptEnabled = options.javascript;
(async () => {
const {
internalPrintFlags,
listDevices,
output,
} = options;
if (internalPrintFlags) {
console.log(JSON.stringify(options));
return;
}
if (listDevices) {
console.log(captureWebsite.devices.join('\n'));
return;
}
if (!input) {
input = await getStdin();
options.inputType = 'html';
}
if (!input) {
console.error('Please specify a URL, file path or HTML');
process.exit(1);
}
if (output) {
await captureWebsite.file(input, output, options);
} else {
process.stdout.write(await captureWebsite.buffer(input, options));
}
})();