1
1

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 5 years have passed since last update.

node.jsとexpress

Last updated at Posted at 2017-10-17

某Amazonの無料で本読めるやつに、いまからフロントサイド開発をはじめるなんたらかんたらっていう本があって読んでみたのでメモ

ターミナルからbrew install nodebrewでやってみたけどうまくいかなかったので公式サイトからダウンロードしました。

次にnpm initをうってバージョンとかいろいろ聞かれるので適当に答える。
package.jsonができればおk。

次にnpm install --save expressでexpressをインストール
app.jsとかいうのをつくって中身書いていく。

app.js
var experss = require('express');
var app = experss();

// ルートパスにアクセスするとHello Worldを返す
app.get("/", function(req, res) {
    res.send('Hello World');
});

// サーバ起動
app.listen(3000, function() {
    console.log('Example app listening on port 3000!');
});

かけたらnodeコマンドでサーバ立ち上げる。

$node app.js
Example app listening on port 3000!

http://localhost:3000/ にアクセスするとHello Worldが表示されたらおk

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?