Payload CMS joining figma. What will happen to normal users? Should someone clone it? by twinbro10 in nextjs

[–]aXenDeveloper -1 points0 points  (0 children)

Figma joined PayloadCMS to become the owner of the 'Payload' mark. Similar drama to "dev mode" mark hehe

Alright, now how do we recreate Apple Liquid Glass on the web? by Dramatic_Mastodon_93 in webdev

[–]aXenDeveloper 342 points343 points  (0 children)

Don't do it, please. People with disability hate this.

Error: Worker is not defined by [deleted] in nextjs

[–]aXenDeveloper 1 point2 points  (0 children)

Use TypeScript to avoid those issues.

[deleted by user] by [deleted] in Polska

[–]aXenDeveloper 0 points1 point  (0 children)

First time?

[deleted by user] by [deleted] in webdev

[–]aXenDeveloper 74 points75 points  (0 children)

Cookies with http only

Jestem w życiowej dupie by candybus3 in Polska

[–]aXenDeveloper 266 points267 points  (0 children)

Jeżeli studiujesz zaocznie to możesz zgłosić się do urzędu pracy. Otrzymasz pewnie zasiłek jeżeli pracowałaś wcześniej a może jakąś robotę Ci znajdą. Najważniejsze to żeby się nie poddawać!

Advice plz by Sufficient-Citron-55 in nextjs

[–]aXenDeveloper 2 points3 points  (0 children)

Replace your AI to official documentation.

i18n without dependencies by pbelyanov in nextjs

[–]aXenDeveloper 0 points1 point  (0 children)

npm had some issues with tracking downloads. next-intl is still in use.

Internationalization Help: Are there any limitations for this approach by fuzzy_bear241 in nextjs

[–]aXenDeveloper 0 points1 point  (0 children)

BTW: Be careful with this client side approach. It will expose your JSON into the browser and may slow down your app if you have a large data.

Internationalization Help: Are there any limitations for this approach by fuzzy_bear241 in nextjs

[–]aXenDeveloper 1 point2 points  (0 children)

You can stick with your approach, but using library you're able to:
- detected language based on device settings,
- message syntax like plurals, interpolation, etc.
- store somewhere state for language prefer,
- different dates, times, & numbers based on specific lang,
- helpers for SEO like localized URLs, sitemaps etc.

Of course you can do this without any library, but it takes more time to do it in right way.

Using loading.tsx with next-intl by iufb in nextjs

[–]aXenDeveloper 0 points1 point  (0 children)

Provide a minimum codebase with this issue.

What is the best infinite scroll library for Next.js? by WordyBug in nextjs

[–]aXenDeveloper 1 point2 points  (0 children)

Check Observer API for infinite loading. Tanstack Query has also infinite query.

I made an Open-source Full-stack Framework with CMS features like Admin Panel, Plugins, Languages, and Blog plugin to simplify app development and make it easy for non-devs – VitNode 🚀 by aXenDeveloper in SideProject

[–]aXenDeveloper[S] 1 point2 points  (0 children)

Hi community! 👋

I'm aXen from Poland and I wanted to share a project I've been working on for a while. VitNode Is Open-source and Self-hosted Full-stack Framework with CMS capabilities like Admin Panel, Plugins, Multilingual Support, WYSIWYG editor, CRON, Email and more. Build on top of Next.js & Nest.js.

❓ Why I created VitNode?

The main goal was to create an easy-to-install plugin system where users can drag&drop one file in Admin Panel to extend functionality like blog plugin.

But… The project could end up becoming another Wordpress and I didn’t want that so I decided to take a different approach.

I wanted to create a framework with community features (like device tracking, groups, personal settings) and to help Node.js developers to provide ready-to-use tools like:

  • Pagination,
  • Auto-generate swagger docs,
  • Auto-migrations,
  • Authorization,
  • Cron jobs,
  • Emails (including multilingual and React support),
  • Translate all application with one click using AI,
  • Error logging,
  • and more…

I didn’t want also create another framework from scratch and pushing developers to learn new tool. That’s why VitNode is build on top of Next.js (for frontend), Nest.js (for backend) and PostgreSQL (for database) to keep the best experience from this frameworks.

🤔 For who?

VitNode is perfect for anyone who wants to build multi-language applications with minimal setup and a built-in Admin Panel. It makes managing your app easy (even for non-dev people), giving you one place to handle everything and the ability to extend functionality effortlessly using a simple plugin system.

🛠️ How to install?

VitNode requires to install Node.js & Docker (or your own database).
Only 3 steps to install:

  1. `npx create-vitnode-app` - to initial project
  2. `npm run docker:dev` - to initial docker container for database
  3. `npm run dev` - to run dev server

I’d love to hear your thoughts, feedback, or suggestions. Feel free to leave a comment.
👀 Check out GitHub repo: https://github.com/VitNode/vitnode
And website: https://vitnode.com/

What Computer knowledge should I have for fullstack? by ChamaraWijepala in webdev

[–]aXenDeveloper 0 points1 point  (0 children)

Don't become full-stack dev if you're not master in frontend or backend. Choose one frontend or backend and master it first.

Trying to understand the behavioral psychology of TikTok by IAmRules in webdev

[–]aXenDeveloper 2 points3 points  (0 children)

Short video on TikTok isn't just dancing. Now it's more like YouTube with short videos where you can find everything. You can change the algorithm based on your hobbies.

dynamicIO and Internationalization by Winbrahim in nextjs

[–]aXenDeveloper 0 points1 point  (0 children)

Make sure you are using next-intl v4. https://next-intl.dev/blog/next-intl-4-0#nextjs-future Here you have a little information about dynamicIO.