0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

pingで呼び出したらpongを返すAPIを作る

Last updated at Posted at 2022-10-13

http://localhost:3000/ping で呼び出したらpongという文字列が返ってくるAPIを
Node.jsのWebアプリケーション・フレームワークであるExpressを使って作ってみました。
Hello, world!から一ミリくらい前に踏み出してみようという気持ちです。

この記事はExpressのチュートリアルを参考にしています。
https://expressjs.com/ja/starter/hello-world.html

Node.jsのバージョン管理ツールをインストール

個人的には、anyenv + nodeenvで管理するのが好きです。

Node.jsのインストール

ここでは説明しません。

Yarnのインストール

以下のページを参考にyarnをインストールします。

Node.jsのプロジェクトを作成

yarn init -y

Expressをインストール

yarn add express

APIを作成

今回はapp.jsというファイル名で作成しました。

const express = require('express')
const app = express()
const port = 3000

app.get('/ping', (req, res) => {
  res.send('pong')
})

app.listen(port, () => {
  console.log(`Example app listening on port ${port}`)
})

アプリケーションの実行

以下のコマンドを実行して、アプリケーションを実行します。

node app.js
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?