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?

node.js?npm?Nuxt?な自分のためのメモ

Posted at

node.jsとは?

  • javascript実行環境のこと
  • JavaScriptはChromeやFirefoxといった「ブラウザ上」で動作するプログラミング言語
  • ブラウザ上で動作するJavaScriptはOSの機能にアクセスできない
  • Node.jsではJavaScriptで「OSの機能にアクセスする」プログラムを組むことができる

npmとは?

  • node.jsのパッケージ管理システム
  • パッケージの依存関係、パッケージの競合関係を解決

npmはじめの一歩

  • npm init
    • 「このディレクトリ下は 我々npmが 管理下に置く!」宣言
    • package.jsonが作成される
  • npm install
    • npmリポジトリからライブラリ(正確にはパッケージと呼びます)をダウンロードしてくる
  • npm run
    • package.json内に書かれたシェルスクリプト(scripts)を実行する

vue.jsとは?

nuxt.jsとは?

  • Vue.jsをより使いやすくしたフレームワーク

nuxt.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?