![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
ez-options-js
Advanced tools
an agnostic feature flag implementation that enables you to overload in code, querystring and api, like launchdarkly
an agnostic feature flag implementation that enables you to overload in code, querystring and api, like launchdarkly
I'm calling this "Options", since featureflags is taken the goal is to develop an agnostic approach that is not dependent on react, redux, etc.
It should allow the developer to specify options (flags) in multiple ways...
Usage... http://your-domain.com?options=flag1,-flag2,+flag3&flag4=four
would turn flag1 On (true), and flag2 and flag3 Off (false)
options will look something like {
flag1: true,
flag2: false,
flag3: true,
flag4: 'four',
}
npm install ez-options-js
import theOptions from 'ez-options-js'
describe('Options', () => {
test('Options.options', () => {
expect(Object.keys(theOptions.list).length).toBeGreaterThan(0)
})
test('addQueryString', async () => {
theOptions.set({})
expect(theOptions.list).toEqual({})
theOptions.addQueryString('options=flag1,-flag2,+flag3&flag4=four')
expect(theOptions.list.flag1).toBeTruthy()
expect(theOptions.list.flag2).toBeFalsy()
expect(theOptions.list.flag3).toBeTruthy()
expect(theOptions.list.flag4).toBe('four')
})
...
https://www.npmjs.com/package/ez-options-js
FAQs
an agnostic feature flag implementation that enables you to overload in code, querystring and api, like launchdarkly
We found that ez-options-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.