Loading repository data…
Loading repository data…
Independer / repository
Advanced Angular 2+ starter setup by www.independer.nl. Features ASP.NET Core, Angular 4, Multiple Angular apps, Angular Universal (server-side rendering), AOT compilation and more.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
Based on:
Clone this repository
Restore .NET Core packages:
dotnet restore
Restore NPM packages:
npm install
Run the app using one the options:
From command-line
npm run start:dev
From Visual Studio Code:
Ctrl+Shift+B - runs default "build" task that in turn runs "npm run start:dev"
From Visual Studio:
F5 - starts IIS Express development server.
Navigate to http://localhost:5000 in a web browser
npm run build:prod
npm run build:server
npm run build:server:prod
This command will run TSLint, build all bundles in all configurations and run unit tests.
npm run ci
For even more commands, please see the "scripts" section of package.json.
Server-side rendering is enabled only when the page is requested by a search engine bot (based on User-Agent header) or if the URL contains ?_escaped_fragment_= (a legacy way for recognizing search engine bots, but we keep it because it is useful for testing).
In order to disable server-side rendering completely set ServerRendering/IsEnabled settings to true in appsettings.json:
{
...
"ServerRendering": {
"IsEnabled": true
}
}
Additionally, in order for server-side rendering to work, we need to build the application bundles that can be executed on the server-side with NodeJS. To build the "server" bundles, the following commands can be used:
npm run build:server
npm run build:server:prod
So, to test the application with server-side rendering in Development mode, you need to run two commands:
npm run build:server && npm run start:dev
And similarly, to test the application with server-side rendering in Production mode:
npm run build:prod && npm run build:server:prod && npm run start:prod