Skip to content

Instantly share code, notes, and snippets.

View tkc's full-sized avatar
🏠
Working from home

Tkc tkc

🏠
Working from home
  • Japan
View GitHub Profile
// node6.2.2で実行するため、es2015記法
// パッケージimport
const fetch = require('node-fetch')
// get
fetch('https://github.com/')
.then((res) => res.text()) // プレーンテキスト
.then((body) => {
// githubのHTMLソースが表示される。