azu

Results 512 issues of azu

We want to create starterkit for almin. ``` npx create-almin-app yarn create almin-app ``` ## Difficult Points - What do you use view library? - React, Angular, ... - What...

Status: Proposal

`context.useCase(new ShowError()).exeute(new Error("error"))` It should be treated as plain error object. But, alming-logger handle it as Error log... ![image](https://user-images.githubusercontent.com/19714/27230012-c422d060-52e8-11e7-83ca-eb0d2ba2611a.png)

Type: Bug

Currently, `UseCase#throwError` not to do `throw Error`. It dispatch Error events. Should `UseCase#throwError` actual throw Error?

Status: Proposal
help wanted

``` $ depcruise --validate .dependency-cruiser.json src warn no-circular: node_modules/almin/lib/UseCase.js → node_modules/almin/lib/UseCaseContext.js warn no-circular: node_modules/almin/lib/UseCaseContext.js → node_modules/almin/lib/UseCase.js ````

From https://github.com/azu/faao/issues/43 > It seems that "Currently executing UseCases" is loudness. > https://github.com/almin/almin/blob/2675d7c127479995ff36f1ee1ed232f785dbf34b/packages/almin-logger/src/AsyncLogger.js#L133 > It will be logged at once during stores.

Type: Bug

UMD bundle by rollup will reduce file size and parse cost. - [Parsing JavaScript - better lazy than eager?](https://docs.google.com/presentation/d/1b-ALt6W01nIxutFVFmXMOyd_6ou_6qqP6S0Prmb1iDs/present#slide=id.p "Parsing JavaScript - better lazy than eager? - Google スライド") -...

good first issue
Status: Ready for PR
Status: Proposal

We can implement Stateless Store that is well-known as [Reducers · Redux](http://redux.js.org/docs/faq/Reducers.html "Reducers · Redux"). Rough cut: ```js const statelessStore = (prevState, payload) => nextState ``` === ```js class MyStore...

Status: Proposal

We want to add `id` property to DispatcherPayloadMeta. `id` is unique identifier between Payload. It is same with UseCase#id. ## Motivation - `id` is needed for perpetuation.

Status: Proposal

We want to lo log the events of UseCase/Store. So, Some example directly implement logger like [ContextLogger.js](https://github.com/azu/almin/blob/81f75cd9315a3170e29b8fe7083de9de3b50121c/example/svg-feeling/src/js/util/ContextLogger.js). The logger should be plugin/middleware like [redux](https://github.com/reactjs/redux)/[connect](https://github.com/senchalabs/connect). But, We think that plugin should...

Status: Proposal

We have already memory leak testing in perf/. [andywer/leakage](https://github.com/andywer/leakage "andywer/leakage") make easy it. We will move it to [andywer/leakage](https://github.com/andywer/leakage "andywer/leakage") as unit test.

good first issue