“Remake takes things that were once tedious and complicated, and makes them very simple. It’s a time saver. It’s easy to learn and implement even for non-developers. The future of web app creation seems to be dawning.”
Kevin Graham
CTO, DO YOUR UX LLC.
Praised by Engineers
“Remake is a game changer when it comes to rapid app prototyping. Finally, a web framework that doesn’t make you feel like you’re using a bazooka to kill a fly.”
Sergei Garcia
Sr. Software Engineer
Full web apps with a bit of HTML
Persistent data, user accounts, data saving
Click to edit a todo
Todos (sort, add, remove, and edit)
Finish designing website
Create app prototype
Edit voiceover audio
<divobject>
<h2>Todos</h2>
<ulclass="todos" key="todos"arraysortable>
{{#for todo in todos}}
<liclass="todo"
objectkey:text="@innerText"edit:text
>{{ default todo.text "New todo item" }}</li>
{{/for}}
</ul>
<buttonclass="add-todo" new:todo>Add Todo</button>
</div>