Is Vanilla JS enough for an internal team website?

0
9
Asked By CleverPineapple92 On

I'm working on developing an internal website for my team and I'm considering using only Vanilla JavaScript. I don't need a single-page application (SPA) for this project, so my goal is to keep things simple. However, I'm wondering if I should opt for frontend frameworks instead, mostly because I want to sound knowledgeable when discussing my work with other developers. Is it okay to stick with Vanilla JS, or would using a frontend framework like Next.js make more sense?

3 Answers

Answered By CuriousOtter12 On

Vanilla JS is definitely a valid choice! It really depends on the scale of your project and who you expect to maintain it in the future. Frameworks help standardize your code and can make it easier for others to pick up where you left off, but if you start simple and the project grows later, you can always switch to a framework down the line if needed.

Answered By ThoughtfulTiger42 On

It really comes down to what you're planning for the future. If you think there will be a lot of enhancements or new features later on, consider how easy it'll be to scale with Vanilla JS. Some developers might struggle if they're familiar only with frameworks. Just be prepared to explain your choice to others,

Answered By SillySardine77 On

Honestly, if you feel comfortable with Vanilla JS and it fits your needs, go for it! There's nothing wrong with keeping it simple, especially when you don't need the overhead of a framework. Just keep in mind that if future changes or more features come into play, you might need to rethink your setup later on.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.