Skip to main content

3 posts tagged with "Vue.js"

View All Tags

How to Use Feature Flags in Vue.js

· 9 min read
David Herbert
Turning deep tech into stories developers actually want to read.
Chavez Harris
Build. Break. Learn. Repeat.

Something breaks in your Vue app, and you need to act fast.

Do you push a hotfix and redeploy? Roll back the entire release? Or what if you could simply turn the feature off without touching a line of code?

That is one of the reasons development teams use feature flags. Feature flags let you separate deploying code from releasing it to users. You can ship code to production with a feature turned off, enable it for selected users, roll it out gradually, or disable it if something goes wrong.

In this guide, you will build a small Vue 3 application and use ConfigCat to control a feature remotely without changing or redeploying the application.

How to use feature flags in Vue.js cover

Using Amplitude in a VueJS A/B Testing Scenario

· 5 min read
Chavez Harris
Build. Break. Learn. Repeat.

Hero image

When it comes to releasing new features or changes in software, we can rely on A/B testing for making informed decisions. In this type of testing, we can measure the impact of the new change or feature on users before deciding to deploy it. By doing so, we can carefully roll out updates without negatively impacting user experience.

Using Feature Flags in Nuxt.js

· 5 min read
Chavez Harris
Build. Break. Learn. Repeat.

As a Software Developer, a feature flag management system gives me control and confidence when it comes to rolling out new features. I like that feature flagging offers this level of control as well as the ease with which it integrates into my development workflows.

Cover Image