This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm install --save-dev gulp-postcss autoprefixer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.history.back(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const Nightmare = require('nightmare'); | |
const nightmare = new Nightmare(); | |
// showにtrueをセットすると可視化されます。 | |
// const nightmare = new Nightmare({show:true}); | |
main(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm install chrome-launcher | |
npm install chrome-remote-interface |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strct'; | |
const fs = require('fs'); | |
const util = require('util'); | |
const readFileAsync = util.promisify(fs.readFile); | |
const filePath = './test.txt'; | |
async function promisifyTest() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
let util = require('util'); | |
let aws = require('aws-sdk'); | |
aws.config.loadFromPath('./config/credentials.json'); | |
let dynamodb = new aws.DynamoDB({apiVersion: '2012-08-10'}); | |
// 格納データ作成 | |
let writeFuncs = new Array(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static final int SAFARI = 10; | |
public static final int CHROME = 20; | |
public static final int FIREFOX = 30; | |
public static final int OTHER = 99; |