タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

npmに関するtricknotesのブックマーク (5)

  • nodei.co

    Chrome Extension Some people just don't get it and won't have NodeICO badges on their GitHub READMEs. You can fix this on your end by installing the NodeICO Chrome Extension for GitHub and have them placed on READMEs for Node.js projects that don't have them when you're browsing. Badge Styles Compact Some people don't really appreciate too much bling, so here's compact=true: https://nodei.co/npm/t

    tricknotes
    tricknotes 2014/01/07
    npm モジュールのバッチが付けられるサービス。README につけるとかっこよさそう!
  • npmのプライベートリポジトリを作る – SummerWind

    Nov 24, 2012 先日、YUIコミッターのokuryu氏から、npmのプライベートリポジトリを作る手順をまとめたいい記事があるよと教えてもらいました。実は以前プライベートリポジトリの構築をしようとしてうまくいかずに諦めたことがあったので、記事に書いてある手順を読みながら、改めて手元の環境に構築できるかを試してみました。 CouchDBのインストール npmリポジトリのバックエンドには、CouchDBが使われているので先にこれをインストールします。手元の環境にはHomebrewがインストールされているので、今回は手っ取り早くbrewコマンドからインストールしました。 $ brew install couchdb npmのバックエンドとして使う場合には、CouchDBのsecure_rewriteオプションを無効化する必要があるようなので、以下のようにして設定を変更しておきましょう。

    npmのプライベートリポジトリを作る – SummerWind
  • NPM tricks | Guillermo Rauch's Devthought

    I decided to put together a little list of tips and tricks related to NPM you might not know about, that come from my experience working with it daily, in both production and development. Dev dependencies Make sure packages that only need to be installed while developing your module, like test frameworks, are included as devDependencies: "devDependencies": { "module": "0.1.0" } Introspecting packa

  • Ender - the no-library library.

    intro guide docs download about source Build only what you need, when you need it. $ ender -b qwery,klass,underscore Lightweight, expressive, familiar. $('#content .button') .bind('click.button', function (e) { e.preventDefault(); }) .css({ width: 10, color: 'red' }); $.map(['a', 'b', 'c'], function (letter) { return letter.toUpperCase(); }); // => ['A', 'B', 'C'] $.ajax('path/to/html', function

    tricknotes
    tricknotes 2011/08/23
    独自のパッケージマネージャ
  • node.jsのいろいろなモジュール1 – node-gzip | DevelopersIO

    node.jsについての簡単な説明 最近はnode.jsに関する記事をよく見かけます。node.jsとは、javascriptのサーバサイド実行環境です。 パフォーマンスが良くWebsocket(双方向通信のための規格) ※1と相性がいいこともあり、現在注目されています。 node.jsにはnpm(node package manager)という パッケージ管理ツールがあり、これを使用するとnode.js用のライブラリやフレームワークをインストールしたり、自作パッケージを公開することができます。 これらnode.js用のライブラリやフレームワークはモジュールと呼ばれ、node.jsのgithub上のwiki ※2にまとめられています。 格的なWebフレームワークからシンプルな特定用途のライブラリまで、さまざまなモジュールがあります。(もちろん、ここにないモジュールも数多く存在します) こ

    node.jsのいろいろなモジュール1 – node-gzip | DevelopersIO
    tricknotes
    tricknotes 2011/07/12
    便利モジュール集
  • 1