Object Rest Destructuring ComputedPropertyName https://rikuba.hatenablog.com/entry/20180202/ecmascript_object_omit
...a.map((v: any) => ({ value: v.value })),
–save-dev(package.jsonに書き込む設定)オプションは絶対に付けること!
“一覧”:http://www.riaxdnp.jp/?p=4659
ID名:”#”
クラス名:”.”
http://coliss.com/articles/build-websites/operation/javascript/best-jquery-plugins-and-scripts-2015.html
.scss(.sass)ファイル名の先頭にアンダースコアを入れると、コンパイルしてもcss ファイルが作成されないという仕様があります。
http://tenderfeel.github.io/SassReference/basic/#partial
$elに、tagNameやidの指定値を元にDOM要素を作り出して格納します。もし、tagNameの指定が無ければ、勝手にdivタグの要素を作成します。 これは、実際のhtmlと結びついていない状態になりますので、どこかで、この紐付きを書いてあげる必要があります。
http://lxyuma.hatenablog.com/entry/2013/11/17/134546
http://suigin.jp/blog/?p=9
yo doctorを実行する
// define()の第一引数に配列でモジュールIDを指定している
// 'backbone'というモジュールIDはconfigのpathsで定義されている
// 第二引数の関数の引数にあるBackboneというのは、
// 第一引数で指定したモジュールを参照するための変数名
define(['backbone'], function (Backbone) {
console.log(Backbone === window.Backbone); // trueになる
});
http://yutapon.hatenablog.com/entry/2014/02/16/003052
generator-backboneのgruntファイルに含まれているuserminがrequire.jsのブロックに対応していないので、index.htmlに書かれているような下記の状態だとエラーでbuildできない
buildできない。usePrepareの際にエラーがでる
Running “useminPrepare:html” (useminPrepare) task
Fatal error: require.js blocks are no more supported.
なので、buildのコメントアウトブロックを使用せず、require.jsのcompileを利用する。
Gruntfile.jsのgrunt.initConfigのrequirejsのブロックを下記のように変更
Gruntfile.jsのrequirejs dist optionsに
out: "<%= yeoman.dist %>/scripts/main.js",
include: ['templates','jquery','underscore', 'backbone'],
replaceRequireScript: [
{
files: ['<%= yeoman.dist %>/index.html'],
module: 'main',
modulePath: 'scripts/main'
}
]
を追加する
http://dev.classmethod.jp/client-side/javascript/class-in-coffeescript/
http://www.buildinsider.net/web/popularjslib/2015
“wijimo”:http://wijmo.com/
“AngularJSHub”:http://www.angularjshub.com/
console.log(i);
endpoint:REST APIのエンドポイントを生成するジェネレータ
route:あるURLに対するクライアントサイドのリソース一式を生成するジェネレータ
controller:クライアントサイドのコントローラを生成する。
filter:
directive:AngularJSのdirectiveを生成する。
service:AngularJSのserviceを生成する。
provider:
factory:
decorator:
http://strix01.blogspot.jp/2015/01/yeomanangularjs-full-stack-generator.html
npm config set proxy http://proxy.example.com:8080