Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix minor typo in Blaze tutorial intro #39

Merged
merged 1 commit into from
Jul 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tutorial/simple-todos/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ In this tutorial we will build a simple to-do tasks app using [Blaze](https://ww

Blaze is a powerful library for creating user interfaces by writing reactive HTML templates. Usually, templates are written in Spacebars, a variant of Handlebars designed to take advantage of Tracker, Meteor’s reactivity system. These templates are compiled into JavaScript UI components that are rendered by the Blaze library.

To develop your app, you will need a a code editor. If you don't have any editor of your choice, a great option is to install [Visual Studio Code](https://code.visualstudio.com/). After installing it, you can and the [Meteor Toolbox extension](https://marketplace.visualstudio.com/items?itemName=meteor-toolbox.meteor-toolbox) to enable intelisense for Meteor core and packages. This extension also adds launch configurations for the browser (run/debug).
To develop your app, you will need a code editor. If you don't have any editor of your choice, a great option is to install [Visual Studio Code](https://code.visualstudio.com/). After installing it, you can and the [Meteor Toolbox extension](https://marketplace.visualstudio.com/items?itemName=meteor-toolbox.meteor-toolbox) to enable intellisense for Meteor core and packages. This extension also adds launch configurations for the browser (run/debug).

Meteor works out-of-the-box with several other frameworks like [React](https://reactjs.org), [Svelte](https://svelte.dev/) and [Vue](https://guide.meteor.com/vue.html). We recommend you check out all of our [tutorials](https://www.meteor.com/tutorials).

Expand Down