SPA의 라우팅 원리(링크)

2017. 5. 6. 09:40JS&FRONT/AngularJS

바로 이전 프로젝트를 AngularJS을 이용해서 진행하였고, React 도 한번 정도 해 보면 어떨까 고민을 조금씩 하고 있습니다만...

기본적인 지식에 대한 내용을 이해하기 쉽게 세분화 해서 설명을 해 놓았네요.

SPA 와 SPA의 라우팅 원리 - http://reimaginer.tistory.com/entry/spa-and-spa-routing


실습하는 과정중에 혹시 windows 환경아래서 진행하시는 분들에게 

powershell을 이용하여, 마치 linux 인냥.. 쉽게 접근할수 있는 방법을 가이드 합니다.



 1) windows 환경이기 때문에, 저는 scoop를 우선 설치 합니다. (powershell 입니다.)

     iex (new-object net.webclient).downloadstring('https://get.scoop.sh')


2) 그리고 여러 관련된 것들을 설치 합니다.
     - scoop install curl 
     - scoop install git
     - scoop install grep
     - scoop install vim
     - scoop install nodejs
     - 환경변수 잡아줍시다.
          - $env:path | grep -o git
          - $env:path | grep -o curl
          - $env:path | grep -o nodejs
          - $env:path | grep -o curl
     - concfg 설치 : scoop install concfg
          - concfg is a utility to import and export Windos console settings like fonts and colors. 
      - pshazz 설치 : scoop install pshazz
 - Pshzaa extneds your powershell profile to add things like

    • A nicer prompt, including Git and Mercurial info
    • Git and Mercurial tab completion
    • An SSH helper that lets you never enter your private key password again
    • Sensible aliases, and an easy way to add your own aliases and remove ones you don't like
사실 위 모든 것은 scoop 사이트에 가보시면 동영상으로 가이드 해주고 있습니다.
저는 특별하게 nodejs 정도만 추가 해 줬습니다.

그리고 나서 다시 강좌에 있는 실습을 진행하면 됩니다.