joystick icon indicating copy to clipboard operation
joystick copied to clipboard

A full-stack JavaScript framework for building stable, easy-to-maintain apps and websites.

Results 199 joystick issues
Sort by recently updated
recently updated
newest added

If a page has no need for interaction, make it possible to flag it as a `static` page in `res.render()` like this: ```javascript res.render('ui/pages/index/index.js', { layout: 'ui/layouts/app/index.js', static: true });...

feature
@joystick.js/ui
@joystick.js/node

Didn't realize this was a thing/how to do it when I first implemented users for PostgreSQL. Should switch to this to reduce the footprint/need to juggle a bunch of different...

refactor
@joystick.js/node

Add support to `accounts` object for common OAuth providers: ```javascript import ui, { accounts } from '@joystick.js/ui'; accounts.github(); accounts.google(); accounts.facebook(); accounts.twitter(); ``` Would also be good to have a hook...

feature
@joystick.js/ui
@joystick.js/node

Came across a use case for this on another project. Need to be able to disable the built-in middleware in favor of configuring a custom version in the `middleware` option...

feature
@joystick.js/node

Came across this on another project in relation to middleware. Certain middleware config will need access to JavaScript in order to work (e.g., defining custom rules for a cors config)....

question
feature
@joystick.js/node

Just had a passing thought that this should be possible without a lot of headaches. Only thing I can think that'd be problematic would be a driver to load the...

feature
@joystick.js/cli

Just set up a [Mullvad](mullvad.net) account and was blown away by how slick the anonymous token-based username workflow functions. This would be insanely easy to add to Joystick. Possible API:...

feature
@joystick.js/node

I know this is possible just need to think about the design. For apps in development w/ a staging environment, could be handy to have a mock .htaccess type of...

feature
@joystick.js/node

Make it easy to manually swap a password. Something like... ```javascript accounts.changePassword({ oldPassword: 'thisistheold', newPassword: 'thisisthenew' }); ```

feature
@joystick.js/ui
@joystick.js/node

This is just big enough of a pain in the butt that Joystick should pick up the weight. Just do something like... ```javascript import joystick, { sitemap } from '@joystick.js/node';...

feature
@joystick.js/node