Ruru's PlayGround :)
close
프로필 배경
프로필 로고

Ruru's PlayGround :)

  • 분류 전체보기 (505)
    • AI & Software (5)
    • 일상다반사 (134)
      • 뉴스 (35)
      • 생활지식 (7)
      • 소프트웨어 (5)
      • 여행 (2)
      • 음악 (43)
      • 외국어 (7)
      • 좋아 (30)
      • 게임 (5)
    • System (1)
      • Microsoft Exchange (11)
      • Microsoft SharePoint (21)
      • Microsoft Lync (37)
      • System Mangement (39)
    • Development (256)
      • .NET (147)
      • JavaScript (69)
      • Web (18)
      • Mobile (0)
      • Etc. (15)
      • Design (7)
  • 홈
  • 태그
  • 방명록

Electronjs Desktop App. Quick Start

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..

  • format_list_bulleted Development/JavaScript
  • · 2019. 1. 31.
  • textsms

Node.js test on Heroku free hosting

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 ..

  • format_list_bulleted Development/JavaScript
  • · 2019. 1. 30.
  • textsms

Vue.js Reference Sites

VUE.JS 입문서https://joshua1988.github.io/web-development/vuejs/vuejs-tutorial-for-beginner/ VUE.JS 공식 가이드 문서https://kr.vuejs.org/v2/guide/index.html VUE 한국 사용자 모임http://vuejs.kr/snippets/ VUE.JS 빠른시작 TODO 만들기https://blog.storyg.co/vue-js-posts/todos-tutorial VUE 무료교육https://laracasts.com/search?q=vue VUE Course 교육 (유료)https://vueschool.io

  • format_list_bulleted Development/Web
  • · 2019. 1. 29.
  • textsms

Node.js 기본 코드 2 TCP Server Client

참고 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..

  • format_list_bulleted Development/JavaScript
  • · 2018. 12. 6.
  • textsms

Node.js 기본 코드

참고 블로그: - 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..

  • format_list_bulleted Development/JavaScript
  • · 2018. 12. 4.
  • textsms

ODROID HC2 DOTNET Core 2.1.302 Install

기존에 ODROID, RPI Linux 환경에서 DOTNET 개발이 어려웠지만,공식적으로 ARM CPU를 지원하기 시작했다. reference url : https://hub.docker.com/r/microsoft/dotnet/ 먼저 위 URL에서 본인이 구성하고자 하는 DOTNET 환경을 선택하고CPU 타입이 ARM이기 때문에 해당 카테고리 아래에서 골라주면 된다. Dockerfile에 명시된 내용을 참고해서ODROID HC2 ubuntu 18.4 환경에서 아래 명령어 실행 sudo apt-get update \ && sudo apt-get install -y --no-install-recommends \ libc6 \ libgcc1 \ libgssapi-krb5-2 \ libicu57 \ liblt..

  • format_list_bulleted Development/.NET
  • · 2018. 7. 11.
  • textsms
  • navigate_before
  • 1
  • ···
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • ···
  • 85
  • navigate_next
최근 글
인기 글
최근 댓글
태그
  • #SilverLight
  • #Programming
  • #.NET
  • #microsoft
  • #C#
  • #자바스크립트
  • #javascript
  • #프로그래밍
  • #ASP.NET
  • #OCS
전체 카테고리
  • 분류 전체보기 (505)
    • AI & Software (5)
    • 일상다반사 (134)
      • 뉴스 (35)
      • 생활지식 (7)
      • 소프트웨어 (5)
      • 여행 (2)
      • 음악 (43)
      • 외국어 (7)
      • 좋아 (30)
      • 게임 (5)
    • System (1)
      • Microsoft Exchange (11)
      • Microsoft SharePoint (21)
      • Microsoft Lync (37)
      • System Mangement (39)
    • Development (256)
      • .NET (147)
      • JavaScript (69)
      • Web (18)
      • Mobile (0)
      • Etc. (15)
      • Design (7)
전체 방문자
오늘
어제
전체
Copyright © Ruru's PlayGround :) All rights reserved.
Designed by JJuum

티스토리툴바