All Projects → javascript-tutorial → Ja.javascript.info

javascript-tutorial / Ja.javascript.info

Licence: other
現代の JavaScript チュートリアル

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Ja.javascript.info

Townhouse
A multi-tenant Laravel app for listing property rentals
Stars: ✭ 218 (-3.54%)
Mutual labels:  tutorial
Caffe2 Ios
Caffe2 on iOS Real-time Demo. Test with Your Own Model and Photos.
Stars: ✭ 221 (-2.21%)
Mutual labels:  tutorial
Tutorial
Tutorial covering Open Source tools for Source Separation.
Stars: ✭ 223 (-1.33%)
Mutual labels:  tutorial
Howtodothisinflutter
📄Flutter cheat sheet
Stars: ✭ 219 (-3.1%)
Mutual labels:  tutorial
Stealthgameudemy
C++ Stealth Game in Unreal Engine (Udemy Project)
Stars: ✭ 221 (-2.21%)
Mutual labels:  tutorial
Purrr Tutorial
A introduction to purrr
Stars: ✭ 222 (-1.77%)
Mutual labels:  tutorial
How To Read Pytorch
Quick, visual, principled introduction to pytorch code through five colab notebooks.
Stars: ✭ 218 (-3.54%)
Mutual labels:  tutorial
Learn To Send Email Via Google Script Html No Server
📧 An Example of using an HTML form (e.g: "Contact Us" on a website) to send Email without a Backend Server (using a Google Script) perfect for static websites that need to collect data.
Stars: ✭ 2,718 (+1102.65%)
Mutual labels:  tutorial
Dl For Chatbot
Deep Learning / NLP tutorial for Chatbot Developers
Stars: ✭ 221 (-2.21%)
Mutual labels:  tutorial
Tutti
Tutti is a Swift library that lets you create tutorials, hints and onboarding experiences.
Stars: ✭ 224 (-0.88%)
Mutual labels:  tutorial
Knative Tutorial
https://dn.dev/master A practical guide to get started with Knative. Knative concepts are explained simple and easy way with lots of demos and exercises.
Stars: ✭ 219 (-3.1%)
Mutual labels:  tutorial
Awesome Powershell
A curated list of delightful PowerShell modules and resources
Stars: ✭ 2,967 (+1212.83%)
Mutual labels:  tutorial
Language Manager Ios
Language Manager iOS
Stars: ✭ 222 (-1.77%)
Mutual labels:  tutorial
Modern Graphql Tutorial
📖 A simple and easy GraphQL tutorial to get started with GraphQL.
Stars: ✭ 219 (-3.1%)
Mutual labels:  tutorial
Todolist flutter
🎓Flutter TodoList tutorial
Stars: ✭ 225 (-0.44%)
Mutual labels:  tutorial
50 Days Of Ml
A day to day plan for this challenge (50 Days of Machine Learning) . Covers both theoretical and practical aspects
Stars: ✭ 218 (-3.54%)
Mutual labels:  tutorial
Way To Algorithm
Algorithm Tutorial and Source Code
Stars: ✭ 221 (-2.21%)
Mutual labels:  tutorial
Wasm By Example
Wasm By Example is a website with a set of hands-on introduction examples and tutorials for WebAssembly (Wasm)
Stars: ✭ 226 (+0%)
Mutual labels:  tutorial
Awesomespotlightview
Awesome tool for create tutorial walkthrough or coach tour
Stars: ✭ 225 (-0.44%)
Mutual labels:  tutorial
Baremetal Arm
An ebook about bare-metal programming for ARM
Stars: ✭ 222 (-1.77%)
Mutual labels:  tutorial

日本語版 Modern JavaScript Tutorial

このリポジトリは https://javascript.info の日本語翻訳版で、https://ja.javascript.info で公開されています。

翻訳をより良いものにするために、ご協力お願いします!

  • "Translate Progress" の issue を見てください。
  • 未チェック(未翻訳を表します)のコンテンツの中で、翻訳したいコンテンツを選んでください。
  • 翻訳していることが分かるよう、issueを作成してください。
  • リポジトリを Fork し、翻訳を行い、できたら PR をしてください。

🎉 Thank you!

コントリビューターの名前と翻訳した量は https://ja.javascript.info/about#contributors で見ることができます(PRがマージされると更新されます)。

P.S. 翻訳されている他の言語の一覧は https://github.com/javascript-tutorial/translate にあります。

構造

チャプター毎にフォルダが分かれており、その中に記事とタスクがあります。

フォルダは N-url という名前になっており、N はソートのための番号です(記事はこの順番に並びます)。 url はサイト上の URL スラッグです。

フォルダは次の1つ以上のファイルから成ります:

  • index.md セクション用
  • article.md 記事用
  • task.md タスク用(+ 他にあるとしたら解答用の solution.md)

ファイルは # Title Header から始まり、Markdown のようなフォーマットでテキストが続きます。シンプルなテキストエディタで編集可能です。

記事やタスクで利用する追加のリソース(画像など)や例も同じフォルダにあります。

翻訳時の Tips

翻訳は単語レベルで正確である必要はありません。技術的に正しく、分かりやすく説明されるべきです。

もし英語版の記事が改善できそうであれば、ぜひPRを送ってください。

コードブロック内のテキスト

  • コメントだけを翻訳してください。
  • 文字列や変数など、コメント以外のものは翻訳しないでください。

例:

// Example
const text = "Hello, world";
document.querySelector('.hello').innerHTML = text;

✅ DO (コメントを翻訳):

// 例
const text = 'Hello, world';
document.querySelector('.hello').innerHTML = text;

❌ DON'T (文字列やクラスの翻訳):

// 例
const text = 'ハローワールド';
// ".hello" は css クラスなので翻訳しません
document.querySelector('.ハロー').innerHTML = text;

外部リンク

外部リンクが Wikipedia (e.g. https://en.wikipedia.org/wiki/JavaScript)で、その記事の日本語版が存在し、かつそれなりの品質であれば、代わりにそのバージョンをリンクさせてください。

例:

[JavaScript](https://en.wikipedia.org/wiki/JavaScript) is a programming language.

✅ OK (en -> es):

[JavaScript](https://es.wikipedia.org/wiki/JavaScript) es un lenguaje de programación.

MDN へのリンクについては、部分的にしか翻訳されていない場合でも言語固有のバージョンを使用してください。

リンクされた記事に翻訳版がない場合は、「そのまま」リンクを残してください。

ローカルで動かす

このチュートリアルはローカルでも動かすことができ、その場ですぐに変更を確認することができます。

サーバは https://github.com/javascript-tutorial/server にあります。

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].