Skip to content

Peoples thoughts on Nextjs?

Discussion
  • Over the last months I tried writing some small apps using Nextjs on Vercel.
    Iā€™m not a technical expert, but I have never found anything so complicated, that seems to break at every step!
    I joined a Nextjs Discord chat and it is enlightening to see how many people have issues with so many things. In particular some functions that would work on Nodejs, or conventional hosting.
    I never really got into React, (because for what I do vanilla JS is enough) and Iā€™m not onboard yet with ā€˜thin backendsā€™ and the obsession to have everything in the cloud.

    I wonder where it will go in the future? Will Nextjs and frameworks like it be the future, or will it fade into oblivion?
    It is a learning curve which I am stepping off for now, but Iā€™m curious on others opinions.

  • @Panda I have the same opinion here. NextJS is a framework for react, and like angular, I was never one to simply dive off into the deep without having any real need to do so. Iā€™m conversant with nodeJS, vanilla js, and several other languages (including PHP which I have years of experience in and developed / still maintain an application at work that was custom written by me to fulfill an audit requirement), and in all honesty, I donā€™t really want to spend my life learning new frameworks unless I have a need to do so.

    Iā€™ve been on the nodeJS train for some time now, and given my adoption of NodeBB, this makes perfect sense.

    Bleeding edge is fun if you want to experiment and learn, but with so many frameworks popping up all over the place, how many do we actually need?

    I guess most of this really depends on unique use cases, but Iā€™ve yet to come across an issue that meant I had to rewrite an application in a different language to resolve an issue. Itā€™s almost like using a bulldozer to find a china cup.


Related Topics
  • Note Taking App

    Discussion
    13
    4 Votes
    13 Posts
    231 Views

    @Madchatthew A simple PWA would probably suffice in the meantime

  • Which email client do you use?

    Discussion
    53
    22 Votes
    53 Posts
    1k Views

    @Madchatthew Iā€™m in the same boat. We live in a mobile-first world these days, and any software vendor not rapidly adopting that mantra is going to find themselves out of business.

  • Google looks to AI paywall option

    Discussion
    1
    1 Votes
    1 Posts
    304 Views
    No one has replied
  • 8 Votes
    9 Posts
    544 Views

    This is interesting - $116m bet on share positions?

    https://news.sky.com/story/gamestop-stock-resurgent-as-influencer-roaring-kitty-places-116m-bet-on-retailer-13147356

    Anyone else think this sounds very much like insider trading?

  • 4 Votes
    7 Posts
    770 Views

    @phenomlab oh no, that is 1 cent on the video, but you are right, symbols are similarā€¦ I just converted it to $1 , since it is more intuitive in daily lifeā€¦

  • The corporate greed of Amazon

    Discussion
    11
    13 Votes
    11 Posts
    569 Views

    And so it starts. Amazon are going to introduce forced ads even for Prime customers on their platform. To remove them, you have to pay more??

    https://news.sky.com/story/amazons-prime-video-to-include-ads-from-2024-unless-you-pay-more-12967202

  • node vs nodejs confusion?

    Solved Configure
    2
    1 Votes
    2 Posts
    358 Views

    @eeeee have a look at the below

    https://docs.nodebb.org/installing/os/ubuntu/

    curl -sL https://deb.nodesource.com/setup_lts.x | sudo -E bash - sudo apt-get install -y nodejs

    Youā€™ll notice that we are in fact ā€œinstallingā€ NodeJS but never actually have a need to reference it. Hereā€™s the nodejs --version command on my dev system

    6eb1482e-0c9b-454d-aa84-199bcc845702-image.png

    More detail here

    https://askubuntu.com/questions/1030622/why-do-i-see-different-versions-of-node-and-nodejs

  • Updating Node and NPM

    General
    5
    1 Votes
    5 Posts
    390 Views

    @Sampo2910 said in Updating Node and NPM:

    Is there a way I can see what the app version of Node is? Then i could install ā€˜up to thatā€™ and keep an eye out for any changes?

    Have a look in the source code for the app you are using, or better still, look at the GitHub page which should give you an idea of the version number which is the latest.

    In the source code you have running, there is typically a README file which should state the version you are running.