Dmitri Zaitsev

Results 149 comments of Dmitri Zaitsev

Nice! But how to run the new test file? Any script to add?

@coderabbitai review

@coderabbitai generate interesting stats about this repository and render them as a table

## Angular 2 [The `app.html` file from the TodoMVC example] https://github.com/tastejs/todomvc/blob/master/examples/angular2/app/app.html ```hmtl [(ngModel)]="newTodoText" (keyup.enter)="addTodo()" ``` [The `app.ts` file](https://github.com/tastejs/todomvc/blob/master/examples/angular2/app/app.ts): ```ts addTodo() { if (this.newTodoText.trim().length) { // delegate to a `todoStore` method,...

## VueJS 2 [The `index.html` file](https://github.com/vuejs/vue/blob/dev/examples/todomvc/index.html) from the TodoMVC example: ```html v-model="newTodo" @keyup.enter="addTodo" ``` [The `app.js` file](https://github.com/vuejs/vue/blob/dev/examples/todomvc/app.js): ```js addTodo: function () { var value = this.newTodo && this.newTodo.trim() if (!value)...

## MithrilJS [The `todomvc.js` file](https://github.com/MithrilJS/mithril.js/blob/next/examples/todomvc/todomvc.js) from the TodoMVC example: ```js view: function(vnode) { var ui = vnode.state ... // attach function referenced by state on the vnode argument m("input", {onkeypress:...

## CycleJS [The `view.js` file](https://github.com/cyclejs/todomvc-cycle/blob/master/src/components/TaskList/view.js) in the TodoMVC example: ```js // actions are present but not attached here input('.new-todo', { props: { type: 'text', name: 'newTodo' }, // Cycle's specific...

## MostJS ### General comment The MostJS example here was one of the main inspiration sources for `un` and resembles some of the code in https://github.com/dmitriz/un/blob/master/index.js [The `view.js` file](https://github.com/briancavalier/most-todomvc/blob/master/src/view.js) from...

## [The functional frontend framework](https://github.com/paldepind/functional-frontend-architecture) ### General comment The example here was also one of the main inspiration sources for un and resembles some of the code in https://github.com/dmitriz/un/blob/master/index.js [The...