iRSSの日記

はてなダイアリーiRSSの日記の続き

2020-01-01から1年間の記事一覧

Shopify APIを使う

やりたいこと Shopifyでオンラインショップ向けのアプリを作りたい 外部サイトからオンラインショップへの送客 ShopifyのAPIを利用できるようにする。 実現方法:カスタムアプリの作成 管理画面のカスタマイズ 入力画面を改良してメタデータを付与できるよう…

mochaに起動時にいろいろ(カスタム引数を渡すとか)やる

.mocharc.jsにてbootstrapをrequire "use strict"; const { dirname } = require("path"); module.exports = { require: [ __dirname + "/test/bootstrap"], timeout: 10000, }; /test/bootstrap.jsがmocha起動時に実行される // project root dir 基準の mo…

thisの動きに惑う

typescript type Handler = (name: string) => void; class A { public hello(name: string) { console.log("hello " + name, "this:`", this, "`"); } } class B { public world(name: string) { console.log("world " + name, "this:`", this, "`"); } } c…

ちょっと試したい時に使うもの

メールアドレス m.kuku.lu JSON json.okiba.me

Firebase Auth周りメモ

firebase.google.comuserにroleを追加できる