はてなブックマークアプリ

サクサク読めて、
アプリ限定の機能も多数!

アプリで開く

はてなブックマーク

  • はてなブックマークって?
  • アプリ・拡張の紹介
  • ユーザー登録
  • ログイン
  • Hatena

はてなブックマーク

トップへ戻る

  • 総合
    • 人気
    • 新着
    • IT
    • 最新ガジェット
    • 自然科学
    • 経済・金融
    • おもしろ
    • マンガ
    • ゲーム
    • はてなブログ(総合)
  • 一般
    • 人気
    • 新着
    • 社会ニュース
    • 地域
    • 国際
    • 天気
    • グルメ
    • 映画・音楽
    • スポーツ
    • はてな匿名ダイアリー
    • はてなブログ(一般)
  • 世の中
    • 人気
    • 新着
    • 新型コロナウイルス
    • 働き方
    • 生き方
    • 地域
    • 医療・ヘルス
    • 教育
    • はてな匿名ダイアリー
    • はてなブログ(世の中)
  • 政治と経済
    • 人気
    • 新着
    • 政治
    • 経済・金融
    • 企業
    • 仕事・就職
    • マーケット
    • 国際
    • はてなブログ(政治と経済)
  • 暮らし
    • 人気
    • 新着
    • カルチャー・ライフスタイル
    • ファッション
    • 運動・エクササイズ
    • 結婚・子育て
    • 住まい
    • グルメ
    • 相続
    • はてなブログ(暮らし)
    • 掃除・整理整頓
    • 雑貨
    • 買ってよかったもの
    • 旅行
    • アウトドア
    • 趣味
  • 学び
    • 人気
    • 新着
    • 人文科学
    • 社会科学
    • 自然科学
    • 語学
    • ビジネス・経営学
    • デザイン
    • 法律
    • 本・書評
    • 将棋・囲碁
    • はてなブログ(学び)
  • テクノロジー
    • 人気
    • 新着
    • IT
    • セキュリティ技術
    • はてなブログ(テクノロジー)
    • AI・機械学習
    • プログラミング
    • エンジニア
  • おもしろ
    • 人気
    • 新着
    • まとめ
    • ネタ
    • おもしろ
    • これはすごい
    • かわいい
    • 雑学
    • 癒やし
    • はてなブログ(おもしろ)
  • エンタメ
    • 人気
    • 新着
    • スポーツ
    • 映画
    • 音楽
    • アイドル
    • 芸能
    • お笑い
    • サッカー
    • 話題の動画
    • はてなブログ(エンタメ)
  • アニメとゲーム
    • 人気
    • 新着
    • マンガ
    • Webマンガ
    • ゲーム
    • 任天堂
    • PlayStation
    • アニメ
    • バーチャルYouTuber
    • オタクカルチャー
    • はてなブログ(アニメとゲーム)
    • はてなブログ(ゲーム)
  • おすすめ

    セキュリティ

『isaacs - Overview』

  • 人気
  • 新着
  • すべて
  • GitHub - isaacs/tshy

    4 users

    github.com/isaacs

    You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

    • テクノロジー
    • 2023/09/14 10:12
    • TypeScript
    • Tools
    • GitHub - isaacs/minipass: A stream implementation that does more by doing less

      4 users

      github.com/isaacs

      A very minimal implementation of a PassThrough stream It's very fast for objects, strings, and buffers. Supports pipe()ing (including multi-pipe() and backpressure transmission), buffering data until either a data event handler or pipe() is added (so you don't lose the first chunk), and most other cases where PassThrough is a good idea. There is a read() method, but it's much more efficient to con

      • テクノロジー
      • 2019/11/09 17:16
      • stream
      • npm
      • node.js
      • library
      • Insert automatically generated table of contents TOC on rendered markdown files like README.md. · Issue #215 · isaacs/github

        4 users

        github.com/isaacs

        Edit March 2021: GitHub now added a workaround mentioned at: #215 (comment) That is a good step, but I'll keep this open until they actually add a way to add it inside the rendered output (which can be e.g. searched more easily with Ctrl+F). When I see a manually generated table of contents, it makes me sad. When I see a huge README that is impossible to navigate without it, it makes me even sadde

        • テクノロジー
        • 2016/08/02 17:08
        • GitHub
        • Add HTTPS support to Github Pages including custom domains · Issue #156 · isaacs/github

          7 users

          github.com/isaacs

          NOTE to anyone stumbling on this thread - there are many people subscribed, so please do not comment here unless you have something new to add that is not already discussed above in this long, detailed (and I hope helpful!) discussion thread. Update: GitHub announced official support of HTTPS for *.github.io domains, which is awesome, and a clear first step. They clearly intend to move GitHub Page

          • テクノロジー
          • 2016/02/15 17:31
          • github
          • あとで読む
          • GitHub - isaacs/node-lru-cache: A fast cache that automatically deletes the least recently used items

            9 users

            github.com/isaacs

            A cache object that deletes the least-recently-used items. Specify a max number of the most recently used items that you want to keep, and this cache will keep that many of the most recently accessed items. This is not primarily a TTL cache, and does not make strong TTL guarantees. There is no preemptive pruning of expired items by default, but you may set a TTL on the cache or on a single set. If

            • テクノロジー
            • 2015/03/20 09:24
            • JavaScript
            • library
            • GitHub - isaacs/rimraf: A `rm -rf` util for nodejs

              12 users

              github.com/isaacs

              The intended purpose of this tool is to remove files and directories from the filesystem, aggressively and recursively removing all items that it can find under a given target. It goes without saying that you must not pass untrusted input to this function or CLI tool, just as you would not to the rm(1) command or the unlink(2) function. It is very challenging to guarantee that any user input will

              • テクノロジー
              • 2013/12/19 17:48
              • npm
              • GitHub
              • JavaScript
              • あとで読む
              • GitHub - isaacs/node-semver: The semver parser for node (the one npm uses)

                7 users

                github.com/isaacs

                You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                • テクノロジー
                • 2013/12/16 01:59
                • node.js
                • library
                • javascript
                • Add ability to follow organizations like a user · Issue #50 · isaacs/github

                  3 users

                  github.com/isaacs

                  You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                  • テクノロジー
                  • 2013/11/28 09:10
                  • Github
                  • GitHub - isaacs/minimatch: a glob matcher in javascript

                    9 users

                    github.com/isaacs

                    You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                    • テクノロジー
                    • 2013/04/18 17:49
                    • npm
                    • JavaScript
                    • node.js
                    • glob
                    • GitHub - isaacs/cluster-master: Take advantage of node built-in cluster module behavior

                      5 users

                      github.com/isaacs

                      A module for taking advantage of the built-in cluster module in node v0.8 and above. Your main server.js file uses this module to fire up a cluster of workers. Those workers then do the actual server stuff (using socket.io, express, tako, raw node, whatever; any TCP/TLS/HTTP/HTTPS server would work.) This module provides some basic functionality to keep a server running. As the name implies, it sh

                      • テクノロジー
                      • 2013/01/11 10:41
                      • node.js
                      • javascript
                      • GitHub - isaacs/st: A node module for serving static files. Does etags, caching, etc.

                        7 users

                        github.com/isaacs

                        You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                        • テクノロジー
                        • 2012/10/24 02:54
                        • node.js
                        • あとで試す
                        • GitHub - isaacs/sax-js: A sax style parser for JS

                          5 users

                          github.com/isaacs

                          You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                          • テクノロジー
                          • 2012/04/02 23:07
                          • node.js
                          • js
                          • how can i do npm on windows! · Issue #373 · npm/npm · GitHub

                            3 users

                            github.com/npm

                            Dismiss Join GitHub today GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together. Sign up

                            • テクノロジー
                            • 2011/07/26 18:05
                            • npm
                            • node.js
                            • windows
                            • doc/faq.md at master from isaacs/npm - GitHub

                              3 users

                              github.com/isaacs

                              npm-faq(1) -- Frequently Asked Questions Where can I find these docs in HTML? https://github.com/isaacs/npm/tree/master/doc It didn't work. That's not really a question. Why didn't it work? I don't know yet. Read the error output, and if you can't figure out what it means, do what it says and post a bug with all the information it asks for. Where does npm put stuff? See npm help folders tl;dr: Use

                              • テクノロジー
                              • 2011/01/17 18:55
                              • npm
                              • node.js
                              • development
                              • doc/coding-style.md at master from isaacs's npm - GitHub

                                3 users

                                github.com/isaacs

                                npm / doc / coding-style.md npm-coding-style(1) -- npm's "funny" coding style DESCRIPTION npm's coding style is a bit unconventional. It is not different for difference's sake, but rather a carefully crafted style that is designed to reduce visual clutter and make bugs more apparent. If you want to contribute to npm (which is very encouraged), you should make your code conform to npm's style. Lin

                                • 世の中
                                • 2010/11/09 12:52
                                • Node.js
                                • js
                                • JavaScript
                                • GitHub - isaacs/multipart-js

                                  3 users

                                  github.com/isaacs

                                  You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                  • テクノロジー
                                  • 2010/09/22 13:58
                                  • Node.js
                                  • js
                                  • library
                                  • event
                                  • it
                                  • multipart
                                  • GitHub - isaacs/node-glob: glob functionality for node.js

                                    16 users

                                    github.com/isaacs

                                    // load using import import { glob, globSync, globStream, globStreamSync, Glob } from 'glob' // or using commonjs, that's fine, too const { glob, globSync, globStream, globStreamSync, Glob, } = require('glob') // the main glob() and globSync() resolve/return array of filenames // all js files, but don't look in node_modules const jsfiles = await glob('**/*.js', { ignore: 'node_modules/**' }) // pa

                                    • テクノロジー
                                    • 2010/08/13 15:09
                                    • npm
                                    • Node.js
                                    • library
                                    • GitHub
                                    • development
                                    • javascript
                                    • GitHub - isaacs/nave: Virtual Environments for Node

                                      21 users

                                      github.com/isaacs

                                      Usage: nave <cmd> COMMANDS install <version> Install the version specified (ex: 12.8.0) install <name> <ver> Install the version as a named env use <version> Enter a subshell where <version> is being used use <ver> <program> Enter a subshell, and run "<program>", then exit use <name> <ver> Create a named env, using the specified version. If the name already exists, but the version differs, then it

                                      • テクノロジー
                                      • 2010/08/07 02:10
                                      • node.js
                                      • nodejs
                                      • git
                                      • javascript
                                      • GitHub - isaacs/npm: GitHub Action for interacting with npm

                                        21 users

                                        github.com/isaacs

                                        You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                        • テクノロジー
                                        • 2010/06/29 09:27
                                        • node.js
                                        • nodejs
                                        • npm
                                        • javascript
                                        • github
                                        • development

                                        このページはまだ
                                        ブックマークされていません

                                        このページを最初にブックマークしてみませんか?

                                        『isaacs - Overview』の新着エントリーを見る

                                        キーボードショートカット一覧

                                        j次のブックマーク

                                        k前のブックマーク

                                        lあとで読む

                                        eコメント一覧を開く

                                        oページを開く

                                        はてなブックマーク

                                        • 総合
                                        • 一般
                                        • 世の中
                                        • 政治と経済
                                        • 暮らし
                                        • 学び
                                        • テクノロジー
                                        • エンタメ
                                        • アニメとゲーム
                                        • おもしろ
                                        • アプリ・拡張機能
                                        • 開発ブログ
                                        • ヘルプ
                                        • お問い合わせ
                                        • ガイドライン
                                        • 利用規約
                                        • プライバシーポリシー
                                        • 利用者情報の外部送信について
                                        • ガイドライン
                                        • 利用規約
                                        • プライバシーポリシー
                                        • 利用者情報の外部送信について

                                        公式Twitter

                                        • 公式アカウント
                                        • ホットエントリー

                                        はてなのサービス

                                        • はてなブログ
                                        • はてなブログPro
                                        • 人力検索はてな
                                        • はてなブログ タグ
                                        • はてなニュース
                                        • ソレドコ
                                        • App Storeからダウンロード
                                        • Google Playで手に入れよう
                                        Copyright © 2005-2026 Hatena. All Rights Reserved.
                                        設定を変更しましたx