In this tutorial we will build a small personal blog of a restaurant chef where he will be able to add, edit and delete articles of different recipes.
Before diving into Typetron, let’s lay down the idea on paper. Will will have:
That’s it. A very simple web app.
Typetron is a framework that runs on top of Node.js. This means you should have Node.js LTS installed on our computer.
Now we are ready to start our first Typetron project. Let’s call it “TypetronBlog”. Open your terminal, make sure you have the Typetron CLI installed and run the following command that will create a directory called TypetronBlog in the current directory:
$ typetron new TypetronBlog
After this, we can start the project:
$ npm start
This will create a local development server on port 8000. Let’s visit http://localhost:8000 and voila, our blank Typetron project is ready.
Join the newsletter to be first to know when new features, tutorials and news are released