並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 13 件 / 13件

新着順 人気順

Express.jsの検索結果1 - 13 件 / 13件

タグ検索の該当結果が少ないため、タイトル検索結果を表示しています。

Express.jsに関するエントリは13件あります。 javascript設計web などが関連タグです。 人気エントリには 『REST API Design Best Practices Handbook – How to Build a REST API with JavaScript, Node.js, and Express.js』などがあります。
  • REST API Design Best Practices Handbook – How to Build a REST API with JavaScript, Node.js, and Express.js

    I've created and consumed many API's over the past few years. During that time, I've come across good and bad practices and have experienced nasty situations when consuming and building API's. But there also have been great moments. There are helpful articles online which present many best practices, but many of them lack some practicality in my opinion. Knowing the theory with few examples is goo

      REST API Design Best Practices Handbook – How to Build a REST API with JavaScript, Node.js, and Express.js
    • Express.js Spam PRs Incident Highlights the Commoditization of Open Source Contributions - Socket

      Security News Express.js Spam PRs Incident Highlights the Commoditization of Open Source Contributions A mountain of spam PRs landed in the Express.js project repo after a popular YouTube tutorial used it as an example for contributing to open source. This put a spotlight on the mandate for job seekers to find a way to contribute to OSS. A tidal wave of spam pull requests recently hit the popular

        Express.js Spam PRs Incident Highlights the Commoditization of Open Source Contributions - Socket
      • Express.jsでasync/awiatをいい感じに使う - ishikawa_pro's memorandum

        はじめに お久しぶりです。 最近は業務でTypeScriptを書き始めたりしてました。 今日は、会社のテックブログに載せるつもりで書いてみたけど、内容的に会社のブログで載せるほどの内容にならず、ボツにした記事をここで供養しようと思いますw ちなみに、会社のテックブログに書いた内容はこちら 👇 https://cam-inc.co.jp/p/techblog/407753782164718758 Express.jsのTIPS紹介 ということで今日は、Express.jsのtipsを1つ紹介します。 Express.jsとは まず簡単にExpress.jsの説明です。 Express.jsは、Node.js製の薄いWebアプリケーションフレームワークです。 https://expressjs.com/ja/ とりあえず、これだけ書けばサーバーを動かすことができます。 const expre

          Express.jsでasync/awiatをいい感じに使う - ishikawa_pro's memorandum
        • express.jsのcors対応 - Qiita

          はじめに APIサービスを構築する際に、Postmanなどのツールでは正常にアクセスできますが、 ブラウザからアクセスすると、エラーになる場合があります。 それはCORS(Cross-Origin Resource Sharing)対応をしていない可能性があります。 なぜなら、サイトのドメインとAPIサービスのドメインが違う場合は 先にoptionsメソッドで問い合わせをします。許可する場合のみ実際のAPIを通信します。 ※同じドメインの場合はCORSの対応は要らないです。 const app = express() const allowCrossDomain = function(req, res, next) { res.header('Access-Control-Allow-Origin', '*') res.header('Access-Control-Allow-Method

            express.jsのcors対応 - Qiita
          • OpenAPI + Express.js + TypeScriptでAPI開発するTips

            事業開発部の龍島です。皆さんschema firstな開発してますか? フォルシアではwebアプリケーション開発にサーバサイドはExpress.js + TypeScript、クライアントサイドはNext.js(React.js) + TypeScriptを用いており、間をつなぐAPIインターフェースの定義にOpenAPI Specification(swagger)を用いてschema firstな開発を行っています。 ここ2年ほどschema firstな開発を行ってきましたがAPIのインターフェース定義を初めに設計することでサーバサイドとクライアントサイドの開発を複数人で同時に進めることができ、近年のフォルシアでも大規模化してきているwebアプリケーション開発に適した手法だと感じています。 web上にはschema firstで開発していこう!という記事は多くありますが、実際にOpe

              OpenAPI + Express.js + TypeScriptでAPI開発するTips
            • Node.js(Express.js)環境でPrisma ORMを使いこなすための基礎 | アールエフェクト

              アプリケーションを構築する場合にはデータを保存するため必ずデータベースが必要となります。データベースを効率的に管理し、簡単に操作を行うためのツールがPrismaです。本文書はこれまでPrismaを利用したことがない人を対象にPrismaを利用する上での基本的な操作と設定方法について説明を行なっています。 Prismaはサーバからデータベースを操作する際にサーバとデータベースの間を仲介する役目を持っておりデータベースを操作する際はどのデータベースを利用しているか意識することなく共通のオブジェクトメソッドを利用することができます。本文書ではサーバにExpress.jsを利用して最初はデータベースのSQLiteを利用します。SQLiteで一通り動作を確認した後にクラウドサービスのSupabase(PostgreSQL)に変更します。データベースの変更を行なってもSQLiteで行なった処理と同じ操

                Node.js(Express.js)環境でPrisma ORMを使いこなすための基礎 | アールエフェクト
              • Welcome to Fiber — an Express.js styled web framework written in Go with ️❤️

                Welcome to Fiber — an Express.js styled web framework written in Go with ️❤️ Introduction Hello, World! 👋 Today we will deal with a young (but ambitious) Fiber web framework on Go and understand that this is not "yet another new framework, like X", but a great tool for creating rapid web applications. 📌 It will be a review article, dive into Fiber we will start further. Table of contents What is

                  Welcome to Fiber — an Express.js styled web framework written in Go with ️❤️
                • express.jsアプリをFirebase Functionsにデプロイする - Qiita

                  expressアプリ追加 firebase-functionsの読み込み functions.https.onRequestイベントハンドラにアプリを渡す exportする // index.js const functions = require('firebase-functions'); const express = require('express'); const app = express(); app.get('/', (req, res) => { console.log(req.method, req.url); res.send({ status: true }); }); const api = functions.https.onRequest(app); module.exports = { api };

                    express.jsアプリをFirebase Functionsにデプロイする - Qiita
                  • How to Deploy an Express.js Application to Vercel

                    Express.js is a popular server framework used with Node.js. In this guide, we will cover how to deploy an Express.js application to Vercel along with some additional topics you’ll need to consider when adapting to a serverless environment. Deploying on VercelDeploying an Express.js application on Vercel should require minimal or no code changes. Let’s use the steps below to create a new Express.js

                      How to Deploy an Express.js Application to Vercel
                    • What's New in Express.js v5.0

                      Express.js 5.0 requires Node.js 18 or higher, so anyone still on older versions will need to upgrade. Installing Express.js 5.0 To try out Express.js 5.0, run: npm install --save express@next Make sure to check the latest version of Express.js on NPM. Now, let’s explore what’s new and what updates you’ll need to make. What’s Changed in Express.js 5.0 In this section, I’ll walk through the most imp

                      • Express.jsでJSON WEB TOKEN(JWT)の設定を行う | アールエフェクト Express.jsでJSON WEB TOKEN(JWT)の設定を行う

                        URL:/api/auth/registerにユーザ登録のPOSTリクエストがあった場合、データベースSQLiteまたはMongoDBのusersテーブル(or usersコレクション)にユーザ情報を保存するURL:/api/auth/loginにPOSTリクエストがあった場合、送られてくるユーザ情報のチェックを行い、登録済みのユーザである場合はTOKEN情報を返すURL:/api/auth/userにGETリクエストがあった場合ヘッダーに保存されているTOKENの確認を行い、問題がなれればユーザ情報を戻す JWTって難しいの? 本文書を読んでいる人の中にはJWT(JSON WEB TOKEN)は認証に関わっているため難しいのではないかという不安を持っている人もいるかと思いますがこの文書で記述しているJWTに関する処理はユーザ名とパスワードを使ってTokenを作成するだけです。Tokenの

                          Express.jsでJSON WEB TOKEN(JWT)の設定を行う | アールエフェクト Express.jsでJSON WEB TOKEN(JWT)の設定を行う
                        • 【Node.js】Express.jsを使う場合と使わない場合でWeb API作成方法を比較してみた | DevelopersIO

                          リテールアプリ共創部のるおんです。先日バックエンドの初期開発において Express.js の環境構築を実装する機会がありました。自分自身Express.jsを用いてバックエンド開発を行ったことがなかったのでこのフレームワークを導入するメリットがわかりませんでした。そのため、今回はNode.jsでWeb APIを作成する際に、Express.jsを使用する場合と使用しない場合の違いを比較してみました。Express.jsを使用せずにNode.js単体で実装した場合とコードを比較することで、Express.jsを使用する利点を具体的に理解できると思います。 Express.jsとは Express.jsは、Node.js用の高速で最小限の機能を持つWebアプリケーションフレームワークです。2010年に最初のバージョンがリリースされて以来、Node.jsエコシステムの中で最も人気のあるフレーム

                            【Node.js】Express.jsを使う場合と使わない場合でWeb API作成方法を比較してみた | DevelopersIO
                          • Express.js Best Practices for Performance in Production - Sematext

                            What is the most important feature an Express.js application can have? Maybe using sockets for real-time chats or GraphQL instead of REST APIs? Come on, tell me. What’s the most amazing, sexy, and hyped feature you have in your Express.js application? Want to guess what mine is? Optimal performance with minimal downtime. If your users can’t use your application, what’s the point of fancy features?

                              Express.js Best Practices for Performance in Production - Sematext
                            1

                            新着記事