You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However since your projects are only going to get bigger, start thinking of how you going to modularise your projects going forward.
How you modularise is entirely up to you!!! But think about using folders. For example if you lets say have 10 handlers that all do different things instead of having them all in a handler.js file you could perhaps have a handlers folder and inside this folder then have each handler as its own file (handlePublic.js, handleAPI, Handle).
Again, this is only a tip! But a nicely structured project will make it easy for everyone to read your codebase.
The text was updated successfully, but these errors were encountered:
This is only a tip!
Your project is well modularised 😄.
However since your projects are only going to get bigger, start thinking of how you going to modularise your projects going forward.
How you modularise is entirely up to you!!! But think about using folders. For example if you lets say have 10 handlers that all do different things instead of having them all in a handler.js file you could perhaps have a handlers folder and inside this folder then have each handler as its own file (handlePublic.js, handleAPI, Handle).
Again, this is only a tip! But a nicely structured project will make it easy for everyone to read your codebase.
The text was updated successfully, but these errors were encountered: