タグ

2012年12月12日のブックマーク (4件)

  • Gruntの概要と導入手順とメリット | 1000ch.net

    2012/12/08 Gruntとは grunt: a task-based command line build tool for JavaScript projects もはや説明不要の可能性もありますが、 gruntがgrunt-cliへの移行(?)をしたこともあり、まとめてみました。 コマンドラインで使用するビルドタスクのツールです。 js(ほぼjson)の設定ファイル上に、concatやminifyといったようなタスクを定義し、 コマンドラインから実行します。言葉だけだとイメージ湧きにくいと思いますので、 使ってもらうのが一番と言い張って導入手順の説明に入ります。 npmからgrunt-cliをインストールする (nodeとnpmはインストール済み・・・よね?) npm install -g grunt-cli これで核となるCLIのインストールは完了です。 ターミ

    yuku_t
    yuku_t 2012/12/12
    Grunt
  • Grunt: The JavaScript Task Runner

    Why use a task runner?In one word: automation. The less work you have to do when performing repetitive tasks like minification, compilation, unit testing, linting, etc, the easier your job becomes. After you've configured it through a Gruntfile, a task runner can do most of that mundane work for you—and your team—with basically zero effort. Why use Grunt?The Grunt ecosystem is huge and it's growin

    Grunt: The JavaScript Task Runner
    yuku_t
    yuku_t 2012/12/12
    Grunt is a task-based command line build tool for JavaScript projects
  • How to Make A Simple HTML5 Game With Enchant.js

    Are you curious about developing cross-platform mobile games that work in a web browser? Well, as you probably know, Apple doesn’t allow Flash to run on iOS devices, and Adobe has pulled the plug on Flash for mobile. This makes HTML5 your only solution – but actually a pretty good one! The thing is, while there are many HTML5 game libraries available, only a few of them support mobile browsers. In

  • 動的サイトにEC2を使わない。 - かれ4

    CDP Advent Calendar 11日目 クラウドを使うにあたって、EC2をWebサーバに使うことに疑問を感じています。 EC2 Elastic Compute Cloud Computeを提供するサービスなのに、なぜコンテンツを配信なんてしなきゃいけないんだと。 コンテンツの配信はCloudFrontにまかせておけばいいじゃないか。 色々な会社の言ってるクラウドがVPSと区別つかなくなってしまってるのもここに原因があるように思ってます。 と、前置きはこんな所にして、実際に今日提案したいCDPは EC2を使わずに動的なサイトを公開するパターンです。 静的なサイトはS3を使えば簡単にできてしまうので、動的なサイトを。 そもそもなんで動的なサイトをS3に置けないかというと、何かしらの処理をサーバサイドにやらせようとしていたからです。 それを全てクライアントサイドとデータベースでやったら

    動的サイトにEC2を使わない。 - かれ4
    yuku_t
    yuku_t 2012/12/12
    EC2を使わずS3とCloudSearchとCloudFrontだけでWebアプリを開発する話