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

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

アプリで開く

はてなブックマーク

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

はてなブックマーク

トップへ戻る

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

    WWDC25

『Michael Herman』

  • 人気
  • 新着
  • すべて
  • Dockerizing a React App

    4 users

    mherman.org

    Docker is a containerization tool used to speed up the development and deployment processes. If you’re working with microservices, Docker makes it much easier to link together small, independent services. It also helps to eliminate environment-specific bugs since you can replicate your production environment locally. This tutorial demonstrates how to Dockerize a React app using the Create React Ap

    • テクノロジー
    • 2018/08/01 19:00
    • Developing Microservices - Node, React, and Docker

      3 users

      mherman.org

      In this post you will learn how to quickly spin up a reproducible development environment with Docker to manage a number of Node.js microservices. This post assumes prior knowledge of the following topics. Refer to the resources for more info: Topic Resource Docker Get started with Docker Docker Compose Get started with Docker Compose Node/Express API Testing Node and Express React React Intro Tes

      • テクノロジー
      • 2017/05/19 13:52
      • Node.js
      • Docker
      • JavaScript
      • Developing a RESTful API with Node and TypeScript

        4 users

        mherman.org

        This tutorial details how to develop a RESTful API with NodeJS, ExpressJS, and TypeScript using test-driven development (TDD). We will be using: NodeJS v7.0.0 ExpressJS v4.14.0 TypeScript v2.0.6 Additionally, we will use tsconfig.json to configure the project, Gulp to automate transpilation, and d.ts for managing typings with npm. Updates: 12/08/2017: Added Windows 10 equivalent commands 11/18/201

        • テクノロジー
        • 2017/04/21 22:44
        • Token-Based Authentication with Node

          3 users

          mherman.org

          This tutorial takes a test-first approach to implementing token-based authentication in a Node app using JSON Web Tokens (JWTs) and Postgres. Contents Objectives Introduction Project Setup Database Setup JWT Setup Route Setup Conclusion Objectives By the end of this tutorial, you will be able to… Discuss the benefits of using JWTs versus sessions and cookies Implement user authentication using JWT

          • テクノロジー
          • 2016/11/09 15:16
          • jwt
          • node.js
          • Node with Docker - continuous integration and delivery

            4 users

            mherman.org

            Welcome. This is a quick start guide for spinning up Docker containers that run NodeJS and Redis. We’ll look at a basic development workflow to manage the local development of an app, on Mac OS X, as well as continuous integration and delivery, step by step. Updates: October 18th, 2015 - Upgraded to the latest versions of Docker (1.8.3), Docker Compose (1.4.2), and NodeJS (4.1.1). Added Docker Mac

            • テクノロジー
            • 2015/05/31 12:25
            • Docker
            • node.js
            • User Authentication with Passport and Express 4

              4 users

              mherman.org

              This post demonstrates how to add user authentication to Node/Express with Passport.js. If you’re interested in social authentication via Passport, please check out this blog post. Looking for an Express 3 authentication tutorial? Check out this post. Before you start, make sure you have Node installed for your specific operating system. This tutorial also uses the following tools/technologies: Ex

              • テクノロジー
              • 2015/03/24 16:33
              • express
              • node.js
              • PostgreSQL and NodeJS

                7 users

                mherman.org

                Today we’re going to build a CRUD todo single page application with Node, Express, Angular, and PostgreSQL. Updates: 09/25/2016: Upgraded to the latest versions of Node v6.6.0, Express v4.13.4, and Angular v1.5.6. Updated to es6. 10/05/2015: Refactored connection handling to fix this issue. For more, view the pull request. Contents Project Setup Postgres Setup Server-Side: Routes Refactoring Clien

                • テクノロジー
                • 2015/02/23 08:40
                • node.js
                • Kickstarting Angular with Gulp and Browserify, Part 1 - Gulp and Bower

                  3 users

                  mherman.org

                  Let’s develop an Angular boilerplate. Why? Despite the plethora of Angular seeds/generators/templates/boilerplates/starters/etc. on Github, none of them will ever do exactly what you want unless you build your own, piece by piece. By designing your own, you will better understand each component as well as how each fits into the greater project. Stop fighting against a boilerplate that just doesn’t

                  • テクノロジー
                  • 2014/12/25 15:51
                  • Social Authentication with Passport.js

                    5 users

                    mherman.org

                    In this post we’ll add social authentication - Facebook, Twitter, Github, Google, and Instagram - to Node.js. Updates: November 27th, 2015 - Refactored and added Instagram Authentication This post uses the following dependencies: chai v3.4.1 express v3.3.4 jade v0.34.1 mocha v2.3.4 mongodb v1.3.23 mongoose v3.8.37 passport v0.3.2 passport-facebook v2.0.0 passport-github2 v0.1.9 passport-google-oau

                    • テクノロジー
                    • 2014/03/03 14:21
                    • node.js
                    • Designing with Class: Sinatra + PostgreSQL + Heroku

                      9 users

                      mherman.org

                      Know a little Ruby? Ready to start web development? Before jumping to Rails, get your hands dirty with Sinatra. It’s the perfect learning tool. My recommendation: Start with a basic dynamic website, backed with SQLite. Create and manage your database tables with raw SQL. Practice deploying on Heroku. Practice. Once you feel good, add another step. Perhaps switch to DataMapper or ActiveRecord for m

                      • テクノロジー
                      • 2013/06/09 18:03
                      • Sinatra
                      • Heroku
                      • PostgreSQL
                      • db
                      • tutorial
                      • ruby
                      • development
                      • programming
                      • blog

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

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

                      『Michael Herman』の新着エントリーを見る

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

                      j次のブックマーク

                      k前のブックマーク

                      lあとで読む

                      eコメント一覧を開く

                      oページを開く

                      はてなブックマーク

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

                      公式Twitter

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

                      はてなのサービス

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