you folder structure looks different to other node js projects. Most node js contains has lib, public, router, scripts, views but you are following a different structure. I am curious to know reason for your structure.
you folder structure looks different to other node js projects. Most node js contains has lib, public, router, scripts, views but you are following a different structure. I am curious to know reason for your structure.
Well, public, router and scripts are needed when you have a server, there is no server here, so why would I need a router or public folder?
It's pretty common to use lib and src interchangeably.
Well, `public`, `router` and `scripts` are needed when you have a server, there is no server here, so why would I need a `router` or `public` folder?
It's pretty common to use `lib` and `src` interchangeably.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
you folder structure looks different to other node js projects. Most node js contains has lib, public, router, scripts, views but you are following a different structure. I am curious to know reason for your structure.
Well,
public,routerandscriptsare needed when you have a server, there is no server here, so why would I need arouterorpublicfolder?It's pretty common to use
libandsrcinterchangeably.@mdibaiee Thanks