mojito icon indicating copy to clipboard operation
mojito copied to clipboard

[archiving soon] Yahoo! Mojito Framework

Results 40 mojito issues
Sort by recently updated
recently updated
newest added

The `express-state` package has been updated to 1.3.0 which removes an internal module which is being `require()`'d here: https://github.com/yahoo/mojito/blob/3828d51207bdab763c4b3f7c48aed1aecd922051/lib/app/addons/ac/deploy.server.js#L19 This should be replaced with the [`serialize-javascript`](https://github.com/yahoo/serialize-javascript) package. See: https://github.com/yahoo/express-state/releases/tag/v1.3.0

Hello. Here https://github.com/yahoo/mojito is says to start server: `$ mojito start` But I'm having the error: ``` $ mojito start err! Unable to invoke command start ```

Use `err.code` for Node forward compatibility. The `errno` property of errors varies between Node v0.10.x and v0.12.x. Use the property `code` instead, which is the same across both versions and...

HI, I just trying out few tutorials in the mojito, and got stuckup in the dynamic mojit creation. whether we include a grand child in the dynamic mojit at controller...

I have a mojit with a binder that tunnels a database query to its server-side controller. In the binder, the response is processed by a ModelList hooked to a DataTable....

This pull requests makes the static context available in the req's context, giving the req's context precedence as brought up in issue #1377.

In the contextualizer middleware, the static context (the context given when the app was started) was not reflected in the runtime context available to the middleware (or to controllers as...

bug

Sequence - 1. User does a page action which does a mojit invoke() 2. Before invoke() is processed user does browser refresh 3. Mojito crashes Log is captured from the...

It crashes in this flow ``` mp.destroyChildren() mp.refreshView() ... mp.destroyChildren() mp.refreshView() ``` At this point there is an exception here https://github.com/yahoo/mojito/blob/42f6b2d8cf73181392a0594a309e347e42c6a7c4/lib/app/autoload/mojit-proxy.client.js#L363 What is happening is getChildren() called here https://github.com/yahoo/mojito/blob/42f6b2d8cf73181392a0594a309e347e42c6a7c4/lib/app/autoload/mojit-proxy.client.js#L354 has...