プログラマーのあああブログ

プログラミングなどなど (PHP, node, Golangとか書いてます)

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

Electron で jQuery やjQuery依存のライブラリを使用する方法

electronでjQueryとjQuery依存のライブラリを使おうとしたら未定義のエラーが出ました Uncaught ReferenceError: $ is not defined Uncaught ReferenceError: jQuery is not defined 下記の読み込み方では未定義のエラーになる <script src="./js/jquery.min.js"></script> これでうまく動きました <script> win</script>…

ElectronのgetAppPathとapp.getPathのパス出力

メモ electron v1.4.1 // windows console.log(app.getAppPath()); // 現在のアプリケーションディレクトリ console.log(app.getPath('home')); // C:\Users\ユーザー名 console.log(app.getPath('appData')); // C:\Users\ユーザー名\AppData\Roaming conso…