Basic setup for MEAN stack project development
This project is a bad idea
MEAN Project
-app
-public
--css
--js
--ts
--views
--index.html
-app.js
-package.json
-tsconfig.json
-webpack.config.js
app:
All backend code.
public/css:
All css files
public/js
All client side javascript files. The bundle.js created via webpack will also be here.
public/ts
All angular components and modules files including main.ts.
public/views
Angular's HTML components.
app.js:
Node application entry point
tsconfig.json:
ts compiler configurations.
webpack.config.js:
Webpack configuration file.