Angular4 Starter Save

Angular v4 starter using Typescript and Webpack

Project README

dependencies

Browsers supports

IE / EdgeIE / Edge FirefoxFirefox ChromeChrome SafariSafari OperaOpera Vivaldi
IE10, IE11, Edge last 2 versions last 2 versions last 2 versions - -

Angular v4 with Webpack

Complete starter for Angular 2 using Webpack works with JWT Including a login, about, 404, commons header and footer components in order to create a generic skeleton

1/

# clone the repo
git clone ...

# change directory to your app

# install the dependencies with npm
$ npm install

# start the server
$ npm run start

2/ Launch a web browser and go http://localhost:8080

3/ Test End to End with Protractor, Jasmine framework and Selenium for Chrome only.

# install Selenium
# From a new term tab, launch chrome webdrivers
./node_modules/protractor/bin/webdriver-manager start

# From an other term tab, launch npm start.

# From an other term tab
npm run e2e

4/ Using webpack dev server with a proxy url for your API routes. Just use /api in order to by pass with the webpack proxy.

5/ CSS

  • SASS only.
  • Using bootstrap beta-4. (last one)
  • Using Angular ng-bootstrap official.
  • Using postcss in order to postprocesses css rules with Webpack postcss-loader

Components

  1. webpack
  2. bootstrap-v4
  3. ng-bootstrap
  4. mixgen-sass-generator
  5. ngx-progressbar
  6. ng2-translate
  7. font-awesome
  8. JWT
  9. Lodash
  • When you want use lodash in components, you have to import each function you wanna use:
import { isEmpty } from 'lodash';
# After that u can just call isEmpty fnc
if (isEmpty(your_variable)) { ... }
  • For each component, you are able to check documentation and example in order to improve your starting project.

Details

If you want keep it, you have to get an API with JWT. Example with Nodejs

  • Translations: Works with json keys, values and json files, check ./public/locales/en.json
  • About page you can protect access of this page with JWT AuthGuard.
const routes: Routes = [
	{ path: 'about', component: AboutComponent, canActivate: [ AuthGuard ] } # add AuthGuard to your route.
];

JWT

  • For JWT, you can easily remove it if you don't want to use it. It is used in the login module
  • U can find a very good implementation for a custom ECRM with NodeJs for your JWT login and logout components. Go to ecrm-skeleton.
  • Install MongoDb, launch it, create a user profile with postman for example. After that u can:
git clone the repo.
# from a term tab, do:
npm install
npm start

The ECRM will be available and you will be able to login and logout to the web app.

API

Webpack dev server enables a proxy url. Look at webpackconfig.js

proxy: {
    "/api": {
        target: "http://localhost:3000", // to be changed by the good api url
        pathRewrite: {"^/api" : ""}
    }
}

Production

To build your application, run:

npm run build

You can now go to /dist and deploy that with Nginx for example to your server!

Preview

Propulsed with Surge.sh
For see what it looks like: DEMO

Open Source Agenda is not affiliated with "Angular4 Starter" Project. README Source: JunkyDeLuxe/angular4-starter
Stars
29
Open Issues
3
Last Commit
5 years ago
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating