본문 바로가기

my_lesson/_NodeJSmongoDB8

Django DjangoDJango의 장점It is free & opensource. 무료이며 오픈 소스이다.It is speedable. 빠르다.It have rich taskes. 추가기능이 풍부하다.It takes security seriously. 보안을 중요하게 여긴다.It is flexibly & scalable. 유연하고 방대하다.It is Incredibly versatilel 용도가 매우 다양하다. Warnnig : 여기에 계시된 내용이외에 추가사항은 꼭 공식 홈페이지를 이용하기 바랍니다. 최신으로 업데이트 되지 않은 내용들은 혼란을 줄것 입니다.Django's Server 1. The Django Development Server (Usages: Test.)The Django development .. 2017. 12. 3.
create-react-native-app install & using create-react-native-app install & using1. node install (설치)2. npm install -g create-react-native-app3. create-react-native-app my-project4. cd my-project5. npm start6. install Expo on device to test 테스트할 장치에 Expo 어플 설치7. execute Expo app & scan my-project QR-code Happy Hacking !!! -->> React-Native Lesson create-react-native-app error android navigator.geolocation.getCurrentPosition(succes, erro.. 2017. 11. 23.
create-react-app +react-hot-loader 사용하기 create-react-app + react-hot-loader 사용하기Install$ :sudo npm install -g create-react-app $ create-react-app myreact-project$ cd myreact-project Customizations앱을 성공적으로 설치헜으니 사용자 정의 설정을 해봅시다. $ npm run eject$ npm install --save-dev react-hot-loader$ vi package.json ..."babel": { "presets": [ "react-app", "stage-1" ], "plugins": [ "react-hot-loader/babel" ]}, ...$ vi config/webpack.config.dev.js...mo.. 2017. 10. 21.
React +Express + Node JS 출처 : The node API for `babel` has been moved to `babel-core`You need to specify 'babel-loader' instead of 'babel'babel -> babel-loader로 react-hot -> react-hot-loader You must have node js & npm installed.>sudo npm install -g babel>sudo npm install -g babel-cli>mkdir reactApp>cd reactApp>npm init>npm install --save react react-dom>npm install --save-dev webpack webpack-dev-server>npm install --sa.. 2017. 9. 13.
Atom -기본 사용법 shortcuts sftp단축키 필수packages Atom - basic usage (SFTP 기본 사용법)1. make project directory on local computer 내 컴퓨터에 프로젝트 폴더를 만든다.2. open the directory on Atom.아톰 편집기에서 방금 만든 프로젝트 폴더를 불러온다.3. make a file it is called .ftpconfig .ftpconfig 라는 FTP설정파일을 생성한다.Path : Packages>Remote-FTP(없으면 해당 패키지를 추가해준다. : File>Settings>Packages)>Create SFTP config file4. make a file it is called .ftpignore .ftpconfig 라는 FTP설정파일을 생성한다.Path : Package.. 2017. 9. 7.
Node JS Node JS install download for win & mac : https://nodejs.org/ko/ ubuntu 18.4 LTS install NodeJS$ sudo install npm$ sudo install nodejs$ mkdir HelloWebServer$cd HelloWebServer~/HelloWebServer$ npm init //Enter to the end~/HelloWebServer$ vi app.js~/HelloWebServer$ npm install --save express // --save -> add this package to package.json 주의할 점은 app.js가 있는 디렉터리에서 npm install express 명령을 실행해야 된다는 것입니다.. 2017. 8. 29.