An open API service indexing awesome lists of open source software.

https://github.com/tinymce/tinymce-code-tutorial


https://github.com/tinymce/tinymce-code-tutorial

draft

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

# TinyMCE Code Tutorial

This repo is a tutorial in some of the programming concepts and libraries that we use in TinyMCE. We'll be covering a bunch of topics, including:

- Functional Programming and how it applies to TinyMCE
- Coding style and practices
- Libraries we use for common tasks like DOM manipulation

# Getting started

You'll need installed:

- nodejs LTS
- yarn
- a suitable IDE

*Clone this repo* to your own GitHub account and work through the exercises. Most of the exercises involve you filling in the blanks and running tests. We'll be writing some tests and using some external tools, too.

Anything with a TODO is something you need to fill in.

When you're finished a section, let your tutor know and they will review your code.

The tutorial is in 3 parts. They are located:

| Part | Location |
| ---- | -------- |
| 1 | `src/main/html` |
| 2 | `src/main/ts` and `src/test/ts/part2` |
| 3 | `src/test/ts/part3` |

# Tips

Follow the types.

We do things a bit differently here, so keep an open mind.

Be patient as you learn, give it a shot, but don't be afraid to ask for help.