Nuxt.js Guidebook - Create Blog Service https://vue-nuxt.gitbook.io/nuxt/tutorials/making-blog Nuxt 블로그 블로그 서비스 제작 튜토리얼 vue-nuxt.gitbook.io 무료 Nuxt.js 강의 https://medium.com/vue-mastery/free-nuxt-js-tutorial-creating-an-app-1a531bc6045 Free Nuxt.js Tutorial — Vue Mastery Course In this Nuxt tutorial we’ll build an application together and learn about the folder structure that Nuxt.js gives you ou..
Electronjs Desktop App Quick Start ref. doc: https://electronjs.org/ Electron 을 통해 Desktop Application을 만들 수 있다. Requirements : Node.js, NPM, Git # 빠른 시작 저장소 Clone$ git clone https://github.com/electron/electron-quick-start # 저장소로 이동$ cd electron-quick-start # 종속성을 설치하고 실행하세요$ npm install && npm start 실행 결과로 프로그램이 실행되는 것을 확인할 수 있으며,아래와 같이 electron-packager로 exe 등을 만들 수 있다. # for use in npm scrip..
Heroku를 이용한 Node.js 사이트 생성 방법의 설명 ref. doc:: https://devcenter.heroku.com/articles/getting-started-with-nodejs#deploy-the-app heroku 사이트 생성 명령어 샘플소스 다운로드$ git clone https://github.com/heroku/node-js-getting-started.git 헤로쿠 생성$ heroku create > https://nameless-savannah-60379.herokuapp.com/ | https://git.heroku.com/nameless-savannah-60379.git 헤로쿠에 업로드$ git push heroku master 헤로쿠 사이트 1개 생성$ heroku ..
참고 URL : http://ourcstory.tistory.com/67?category=664896 TCP_SERVER.JS /** * http://usejsdoc.org/ */ // http://ourcstory.tistory.com/67?category=664896 var net = require('net'); var server = net.createServer(function(socket){ console.log(socket.address().address + " connected."); // client request socket.on('data', function(data) { console.log('rcv:'+data) }); // client disconnect socket.on('clo..
참고 블로그: - http://ourcstory.tistory.com/66?category=664896 var http = require('http');http.createServer(function handler(req, res) { res.writeHead(200, {'Content-Type': 'text/html'}); res.end('Hello World\n');}).listen(1337, '127.0.0.1');console.log('Server running at http://127.0.0.1:1337/'); /* OS 관련 테스트 */var os = require('os');console.log(os.hostname());console.log(os.type());console.log(os.p..
JavaScript 에서 기존에 있는 함수를 바꿀 수 없을 때 Overriding 개념으로 어떻게 접근해야할지 궁금해서 테스트 해봤다. (이하 코드 참고) 결과는 성공 잘 되드라.. ㅋㅋ