Kamil Afsar

Results 19 issues of Kamil Afsar

Excellent library, I would use it if the throttle bounce time would be configurable. Something like this: ``` React.createClass({ mixins: [ OnResize.throttle(200) ] }); ```

Hey dirkmc, Firstly, thanks for such a great plugin. Last week, we've integrated press into our project and that all works fine for js and css files. Since we're also...

Running `phero` without internet connection leads to a crash: ``` /Users/kamilafsar/Projects/phero/packages/cli/node_modules/yoga-layout-prebuilt/yoga-layout/build/Release/nbind.js:53 throw ex; ^ Error: getaddrinfo ENOTFOUND registry.npmjs.org at GetAddrInfoReqWrap.onlookup [as oncomplete] (node:dns:109:26) Emitted 'error' event on ClientRequest instance at:...

bug

Currently we don't support object/array binding syntax in RPC arguments, like this: ``` export async function xxx([aap, noot]: [string, string]): Promise { } export async function yyy({aap, noot}: {aap: string,...

enhancement

We parse/analyse all throw'n errors of the user. All errors are put in the SDK. One exception now is errors thrown with the Promise/reject syntax. See `recursivelyFindThrowStatements.test.ts` Here's how we...

enhancement

Let the user introspect which data came in and went out in a request. Dependency on #49

enhancement

All requests are logged in the CLI. Let the user select and interact with certain requests: X=record Y=stop recording R=replay last RPC request By pressing R the user then can...

enhancement

```ts export namespace todo.aap { export const service = createService( { list, create, update, updateTodoStatus, markAllAsDone, remove, }, { middleware: [authenticate], } ); } ``` - [ ] Let the...

enhancement

Let the user add additional models by exporting them in `samen.ts`. Like this: samen.ts: ```ts export interface MyInterface { n: number } ```

enhancement