Git Product home page Git Product logo

cmg-borrower-portal's Introduction

Angular Starter

A rapid starter project for creating Angular single page apps. Contains Angular, ngPrime, Akita and more. Built with Angular CLI.

Available online @ https://jerrolkrause.github.io/angular-starter/#/

Quick Start

# Clone the repo
git clone https://github.com/JerrolKrause/angular-starter.git

# Rename directory from `angular-starter` to `your-app`

# Change directory to the repo
cd your-app

# Localize
Remove the following line from the app root tsconfig `"extends": "./../tsconfig.json",`

# Install the repo with npm
npm i

Usage

See Angular CLI github page for full usage: https://github.com/angular/angular-cli

# Serve dev on http://localhost:4200/
ng serve

# Prod Build for targeted environment. Files will appear in the dist folder
npm run build:qa # Uses settings from environment.qa.ts
npm run build:uat # Uses settings from environment.uat.ts
npm run build:prod # Uses settings from environment.prod.ts

# Serve prod build from dist folder at http://127.0.0.1:8080/#/.
# Requires http server which can be installed with `npm install http-server -g`
npm run prod

# Run prettier which will format the code in the entire project
npm run format

# Run prod build and then use webpack bundle analyzer to check bundle sizes and composition
# Documentation located in /documentation/
npm run stats

# Automatically generate documentation
npm run docs

# Run e2e protractor tests
ng e2e

# Run e2e protractor tests without rebuilding every time (faster)
ng e2e --s false

# Update NPM dependencies via Angular CLI
ng update

# Deploy dist folder to git pages. Be sure to update deploy script in package.json
npm run deploy

Localizing Your App

package.json

  • If using github pages, update the npm run deploy command in this file to include the correct slug. IE replace /angular-starter/ with your url

src > environments > defaults.ts + src > environments > environment.prod.ts

  • Localize environment settings and properties in these files. Enable/disable app functionality as needed

src > app > shared > app.settings.ts

  • Add/change global app & environment variables

src > index.html

  • Update any header changes to the html in this file. IE logo, navigation, etc

src > manifest.json

  • Change the site info in this file to be specific to your app. Make sure the start Url property matches your production URL

src > assets > icons

  • Change these icons to ones for your app

src > apple-touch-icon + favicon.ico + safari-pinned-tab.svg

  • Change these icons to ones for your app

src > ngsw-config.json

  • Update any dependencies needed for the service worker. Use asset groups for site resources & use dataGroups for API calls

Useful Tools

VSCode Tools

Visual Studio Tools

Bit Usage

Review bit documentation here: https://docs.bit.dev/docs/quick-start. Ntersol bit library is here: https://bit.dev/nts/angular

One line wonders:

  • Get and update to latest everything: npm run bit:pull
  • Tag and push everything: npm run bit:push

Additional Info:

  • Install/update bit cli npm install bit-bin -g
  • See list of outdated components bit list --outdated
  • To get the latest version of everything, run bit import && bit checkout latest --all. Import downloads the latest version from the remote server and checkout switches to that version
  • Check status of local component environment, IE which components have been updated and are ready for tagging/uploading bit status
  • When components are ready to have their changes exported, first run bit tag --all or bit tag --all 1.0.0 to set a new semver version and then export with bit export nts.angular
  • Add a new component to a namespaced project with bit add src/app/components/general/new-component --namespace components/general. See https://bit.dev/nts/angular for the locations and namespaces of components.

When bit goes wrong:

  • Bit likes to add extra namespaced lines to the root package.json even if you aren't using the npm package. It can cause issues so remove that extra line
  • When adding a bit lib to a new project, but likes to add a node_modules directory into the lib directory. This should be deleted
  • Sometimes when getting the latest component, bit adds lots of extra carriage returns. To fix this run checkout with the reset command npm run bit:reset

Add bit to a new project

  1. In the root directory, run bit init
  2. Add .bit/ to your root .gitignore file
  3. In the root package.json directory, change the bit entry to the following. Update the componentsDefaultDirectory if necessary
"bit": {
    "env": {},
    "componentsDefaultDirectory": "src/app/{name}",
    "saveDependenciesAsComponents": true,
    "packageManager": "npm",
    "resolveModules": {
      "modulesDirectories": [
        "./"
      ]
    }
  }
  1. Navigate to the newly created component folder, IE src/app/components/general and delete the node_modules folder and package.json files

Useful Info

Lazy load libraries. Normally libraries that are shared between lazy loaded routes are all bundled into a single master bundle. This approach will bundle them separately.

  • Add a module in app > components > libs > * that imports the library and then exports it
  • Export the module in the barrel file in app > components > libs > index.ts
  • In angular.json, add the path to the module in projects > architect > build > options > lazyModules
  • In the module where the library is needed, import the lazy loaded module from the barrel like import { DatagridModule } from '$features'; and then add to the ngModule imports array

When working with Yarn/NPM Link and your local NPM package src folders (uncompiled .ts), use the following boilerplate in your root tsconfig so that Angular CLI will compile and build on save and not throw an Angular package error

"include": [
	"src/**/*",
	"node_modules/libName/**/*",
]

cmg-borrower-portal's People

Contributors

jerrolkrause avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.