-
Notifications
You must be signed in to change notification settings - Fork 664
Writing a Codelab
🐙 This page turned into an invitation to write a codelab + a general collection of tips and guiding questions.
A codelab is an interactive tutorial written in markdown syntax. We publish our codelabs at blocklycodelabs.dev. Codelabs use a mix of natural language, code samples, and screenshots to create a more interesting tutorial experience. The target user of a codelab is following along and running the code as they read.
Writing a codelab is a great way to contribute to the community. It's a way to share your knowledge and make life easier for the next developer who runs into the same problem.
A great codelab is focused and readable. It clearly tell the user what they will build and what they will learn, and it walks the user through writing and understanding code to complete a specific task.
If you have an idea for a codelab, you can tell us about it by making a feature request. Include a description of what you want to teach and what you will build in the codelab. We'll discuss and refine the idea and then you can write it up and submit a pull request for it. When it's through review, a member of the Blockly team will publish it.
The rest of this page is a set of tips and questions to guide you through writing a codelab.
- Who is the target reader?
- What do they already know about using Blockly?
- What are they trying to learn?
- What is the minimum setup required for the user to run your code?
- Use a conversational writing style.
- Avoid walls of text or walls of code.
As with any writing, start with an outline. This is a good structure for most codelabs:
- Introduction
- What you'll learn
- What you'll build
- What you need to know
- Setup instructions
- Step one: [A clear description]
- Explanation/motivation
- Code sample
- Expected results
- (Optional) More explanation
- ...
- Step ten: [You decide]
- Summary
- What you learned
- What you built
- Additional resources
- Link to completed code (if available)
While you can have more than ten steps, if you're hitting twenty you should consider breaking it into two codelabs.
- You can write in ES5, ES6, or Typescript.
- Follow the Google style guide