/TomoScript

JavaScript/TypeScript course for my wife

Primary LanguageTypeScript

TomoScript

JavaScript/TypeScript project for Tomomi to learn/practice.

Getting started

  • Install dependencies

    • Open the terminal in the project's directory and run:

      npm install

Lessons

  1. Functions
    1. Introduction

File structure

├── .idea/            # WebStorm shared configuration files
├── lessons/          # [Markdown] documents with JavaScript/TypeScript theory (see [#lessons](#lessons)
├── node_modules/     # Directory where all [Node.js] dependencies are installed ([+](https://stackoverflow.com/questions/63294260/what-is-the-purpose-of-node-modules-folder))
├── playground/       # Directory where you can add code you want to try or test. There are no rules here!
├── tasks/            # Directory for task files (homework)
├── .editorconfig     # Configuration file that tells IDEs how to format code (e.g. use 2 spaces for indentation, use utf-8) ([+](https://editorconfig.org/))

Made with <3