๐ท Node.js์์ JavaScript๋ฅผ ์ฌ์ฉํ ์คํฌ๋ฆฐ์ท์ ๋ํด ์์ธํ ์์๋ณด๊ธฐ(PDF ์์ฑ)
3025 ๋จ์ด puppeteerwebdevjavascript
// instead of calling await page.screenshot we now call
await page.pdf({
path: 'codesnacks.pdf',
format: 'A4'
})
์๋ฒฝ์ ๊ธฐํ๊ธฐ ์ํด A4 ํ์์ผ๋ก ์น ํ์ด์ง์ PDF๋ฅผ ์์ฑํ๋ ์ ์ฒด ์ฝ๋๋ ๋ค์๊ณผ ๊ฐ์ต๋๋ค.
// npm i puppeteer
const puppeteer = require('puppeteer');
// we're using async/await - so we need an async function, that we can run
const run = async () => {
// open the browser and prepare a page
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto('https://codesnacks.net/');
await page.pdf({
path: 'codesnacks.pdf',
format: 'A4',
});
// close the browser
await browser.close();
};
// run the async function
run();
Reference
์ด ๋ฌธ์ ์ ๊ดํ์ฌ(๐ท Node.js์์ JavaScript๋ฅผ ์ฌ์ฉํ ์คํฌ๋ฆฐ์ท์ ๋ํด ์์ธํ ์์๋ณด๊ธฐ(PDF ์์ฑ)), ์ฐ๋ฆฌ๋ ์ด๊ณณ์์ ๋ ๋ง์ ์๋ฃ๋ฅผ ๋ฐ๊ฒฌํ๊ณ ๋งํฌ๋ฅผ ํด๋ฆญํ์ฌ ๋ณด์๋ค https://dev.to/benjaminmock/more-on-screenshots-with-javascript-in-node-js-creating-pdfs-2b33ํ ์คํธ๋ฅผ ์์ ๋กญ๊ฒ ๊ณต์ ํ๊ฑฐ๋ ๋ณต์ฌํ ์ ์์ต๋๋ค.ํ์ง๋ง ์ด ๋ฌธ์์ URL์ ์ฐธ์กฐ URL๋ก ๋จ๊ฒจ ๋์ญ์์ค.
์ฐ์ํ ๊ฐ๋ฐ์ ์ฝํ ์ธ ๋ฐ๊ฒฌ์ ์ ๋ (Collection and Share based on the CC Protocol.)
์ข์ ์นํ์ด์ง ์ฆ๊ฒจ์ฐพ๊ธฐ
๊ฐ๋ฐ์ ์ฐ์ ์ฌ์ดํธ ์์ง
๊ฐ๋ฐ์๊ฐ ์์์ผ ํ ํ์ ์ฌ์ดํธ 100์ ์ถ์ฒ ์ฐ๋ฆฌ๋ ๋น์ ์ ์ํด 100๊ฐ์ ์์ฃผ ์ฌ์ฉํ๋ ๊ฐ๋ฐ์ ํ์ต ์ฌ์ดํธ๋ฅผ ์ ๋ฆฌํ์ต๋๋ค