https://github.com/sudheerj/angular-primeng-ngxtranslate
Internationalization using Ngx-Translate
https://github.com/sudheerj/angular-primeng-ngxtranslate
Last synced: 2 months ago
JSON representation
Internationalization using Ngx-Translate
- Host: GitHub
- URL: https://github.com/sudheerj/angular-primeng-ngxtranslate
- Owner: sudheerj
- Created: 2017-06-25T12:37:28.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-26T13:18:55.000Z (almost 8 years ago)
- Last Synced: 2025-02-07T16:34:29.785Z (4 months ago)
- Language: TypeScript
- Size: 19.5 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Angular PrimeNG Internationalization using Ngx-Translate
### Prerequisites
Node.js version 6.x or higher, NPM 3.x or higher.
### Run it
```sh
ng serve
```Running application is available at [http://localhost:4200/](http://localhost:4200/)
### Distribute it
Distributed application can be found in the `dist` folder after running
```sh
ng build
```or
```sh
ng build --prod --aot
```The `--prod` and `--aot` options will optimize the build for production.
### Test it
Execute unit tests by running
```sh
ng test
```Execute end-to-end (e2e) tests by running
```sh
ng serve
```and
```sh
ng e2e
```in two separate consoles.