Finally learning Next.js

Medea - Feb 18 '23 - - Dev Community

Since I got into web development with Flask, I've always wanted to learn Next.js since it's a very popular web framework.
But I usually prefer Python so I've been procrastinating learning Next.js.
Today I decided to try it out.

First of all, I'd like to say that the tutorial on the Next.js website is amazing.
It's very engaging, has a lot of facts and teaches very well.

During the tutorial today, I built my first website with React.js:

<!-- index.html -->
<html>
  <body>
    <div id="app"></div>
    <script src="https://unpkg.com/react@17/umd/react.development.js"></script>
    <script src="https://unpkg.com/react-dom@17/umd/react-dom.development.js"></script>
    <!-- Babel Script -->
    <script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
    <script type="text/jsx">
      const app = document.getElementById('app');
      ReactDOM.render(<h1>Develop. Preview. Ship. 🚀</h1>, app);
    </script>
  </body>
</html>
Enter fullscreen mode Exit fullscreen mode

which had the output:
first react website


I will continue learning Next.js and will post whenever I write some new code with Next.js.


Thanks to @ironcladdev and @dillonb07 for persuading me to start learning Next.js.
I know it's been a while since I wanted to learn it, but it's better late than never!

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .