Programming/neon2018. 9. 10. 19:46

cluster 라는 패키지를 이용하면 손쉽게 한다는데

[링크 : https://nodejs.org/api/cluster.html]

[링크 : https://jdm.kr/blog/166]


PM2 라는 Process Manager나

rabbitMQ(Message Queue?)를 쓰라는데 PM2가 무난해 보이긴 한다.

[링크 : http://pm2.keymetrics.io/]

[링크 : https://www.rabbitmq.com/]

  [링크 : https://medium.com/.../switching-from-cluster-module-to-pm2-rabbitmq-in-node-js-d0cce5eb96f4]

  [링크 : https://blog.outsider.ne.kr/1197]


찾다 보니 express 웹 렌더러를 클러스터로 하는 방법이 따로 있는듯 한데..

전체를 cluster로 하는거랑 다르려나/

[링크 : https://www.npmjs.com/package/express-cluster]

'Programming > neon' 카테고리의 다른 글

neon auto vectoring  (0) 2015.05.06
kernel mode neon support?  (0) 2015.05.06
NEON instruction  (0) 2015.05.05
neon 예제 실행 + 커널 교체  (0) 2015.05.04
arm neon 예제 컴파일  (0) 2015.05.03
Posted by 구차니
Programming/web 관련2018. 9. 10. 18:45


[링크 : https://en.wikipedia.org/wiki/OAuth]

[링크 : https://en.wikipedia.org/wiki/OpenID]

[링크 : https://en.wikipedia.org/wiki/Single_sign-on]

'Programming > web 관련' 카테고리의 다른 글

chrome 보안 무시  (0) 2018.11.13
REST API HTTP 에러코드  (0) 2018.11.06
tinestamp(epoch) to utc / localtime  (0) 2018.09.07
li 글자 수직정렬하기  (0) 2018.08.30
user agent stylesheet  (0) 2018.08.29
Posted by 구차니
Programming/node.js2018. 9. 10. 14:58

node.js 에서 다른 REST 서버로 요청하는걸 찾는중


option의 type을 지정하는거군..


[링크 : http://devnauts.tistory.com/95]

[링크 : http://shiya.io/send-http-requests-to-a-server-with-node-js/]

'Programming > node.js' 카테고리의 다른 글

node.js 글로벌 모듈 목록보기  (0) 2018.09.11
node-rtsp-stream 윈도우에서 설치하기는 실패?  (0) 2018.09.11
cURL 그리고 REST  (6) 2018.09.09
node.js rtsp 스트리밍  (0) 2018.09.07
RESTful  (0) 2018.09.07
Posted by 구차니
Programming/node.js2018. 9. 9. 19:40

"node.js 인 액션" 책 보다가 검색

cURL에서 -X 옵션을 주면 된다


$ curl -X GET http://127.0.0.1:3000/api/users/bakyeono

$ curl -X POST http://127.0.0.1:3000/api/languages/ansi-common-lisp

$ curl -X PUT http://127.0.0.1:3000/api/resources/1789 

[링크 : https://bakyeono.net/post/2016-05-02-rest-api-client-for-cli.html]



-X/--request <command>

(HTTP) Specifies a custom request method to use when communicating with the HTTP server. The specified request will be used instead of the method otherwise used (which defaults to GET). Read the HTTP 1.1 specification for details and explanations. Common additional HTTP requests include PUT and DELETE, but related technologies like WebDAV offers PROPFIND, COPY, MOVE and more.

(FTP) Specifies a custom FTP command to use instead of LIST when doing file lists with FTP.


If this option is used several times, the last one will be used.

[링크 : https://linux.die.net/man/1/curl]



'Programming > node.js' 카테고리의 다른 글

node-rtsp-stream 윈도우에서 설치하기는 실패?  (0) 2018.09.11
node.js HTTP 요청하기  (0) 2018.09.10
node.js rtsp 스트리밍  (0) 2018.09.07
RESTful  (0) 2018.09.07
node.js jwt -JSON Web Token  (0) 2018.09.07
Posted by 구차니
Programming/node.js2018. 9. 7. 16:24

찾아보는데.. ffmpeg을 통해서 로컬에서 변환해서 전송해주는 방식

그러면.. 타임스탬프를 받을 수 있으려나?


[링크 : https://github.com/phoboslab/jsmpeg]

[링크 : https://www.npmjs.com/package/rtsp-ffmpeg]

[링크 : https://www.npmjs.com/package/node-rtsp-stream]

'Programming > node.js' 카테고리의 다른 글

node.js HTTP 요청하기  (0) 2018.09.10
cURL 그리고 REST  (6) 2018.09.09
RESTful  (0) 2018.09.07
node.js jwt -JSON Web Token  (0) 2018.09.07
아직 쓸일은 없지만 걍 찾아본 node.js ssl 적용  (0) 2018.09.07
Posted by 구차니
Programming/web 관련2018. 9. 7. 16:16

timestamp 값을 UTC나 로컬시간(한국이라면 KST)로 출력하는 방법을 찾는중

단순하게 date() 객체를 이용하면 될 듯


[링크 : https://stackoverflow.com/.../how-to-convert-a-timestamp-string-to-local-time-using-javascript]

[링크 : https://stackoverflow.com/questions/6525538/convert-utc-date-time-to-local-date-time/18330682]



테스트를 위해서 브라우저의 timezone을 변경해야 하는데

linux라면  export TZ 로 간단하게 할 수 있긴한데 윈도우는 이렇다할 방법을 아직 못 찾고

대신 플러그인을 발견함.


[링크 : https://gist.github.com/dustinsmith1024/dab3560abaa62cbe0754117d44c71026

[링크 : https://chrome.google.com/.../change-timezone-time-shif/nbofeaabhknfdcpoddmfckpokmncimpj]



'Programming > web 관련' 카테고리의 다른 글

REST API HTTP 에러코드  (0) 2018.11.06
sso openid oauth  (0) 2018.09.10
li 글자 수직정렬하기  (0) 2018.08.30
user agent stylesheet  (0) 2018.08.29
div min-width  (4) 2018.08.28
Posted by 구차니
Programming/node.js2018. 9. 7. 15:40

URI나 CRUD 등의 개념이 나오는데

서버에 대해서 하나의 주소 경로로 하여 명사형으로 URI를 구성하고

GET/PUT/POST/DELETE HTTP 메소드를 이용하여

DB의 create/read(select)/update/delete를 구현한다는 것 정도로 일단 이해


[링크 : https://nesoy.github.io/articles/2017-02/REST]

[링크 : https://spoqa.github.io/2013/06/11/more-restful-interface.html]

[링크 : http://blog.remotty.com/blog/2014/01/28/lets-study-rest/]

[링크 : https://beyondj2ee.wordpress.com/2013/03/21/당신의-api가-restful-하지-않은-5가지-증거/]

'Programming > node.js' 카테고리의 다른 글

cURL 그리고 REST  (6) 2018.09.09
node.js rtsp 스트리밍  (0) 2018.09.07
node.js jwt -JSON Web Token  (0) 2018.09.07
아직 쓸일은 없지만 걍 찾아본 node.js ssl 적용  (0) 2018.09.07
node.js exec와 JSON.parse()  (0) 2018.09.07
Posted by 구차니
Programming/node.js2018. 9. 7. 15:19
Programming/node.js2018. 9. 7. 13:44

부디(?) 이걸 쓸일이 아직 안생기길..


[링크 : https://www.securesign.kr/guides/Node-js-SSL-Certificates-Install]

'Programming > node.js' 카테고리의 다른 글

RESTful  (0) 2018.09.07
node.js jwt -JSON Web Token  (0) 2018.09.07
node.js exec와 JSON.parse()  (0) 2018.09.07
node.js express template  (0) 2018.09.06
node.js exec()  (0) 2018.09.06
Posted by 구차니
Programming/node.js2018. 9. 7. 10:53

test.js

var exec = require('child_process').exec,

child;


child = exec("type test.txt", function(error, stdout, stderr)

{

console.log(stdout);

var obj = JSON.parse(stdout);

console.log(obj.name);

if(error !== null)

{

console.log(error);

}

}); 


test.txt

{

    "name": "식빵",

    "family": "웰시코기",

    "age": 1,

    "weight": 2.14

}


결과.. 으으 인코딩 건드리기 싫다...

아무튼 type으로 파일 내용 돌려받고(즉, 아무 명령어나 실행하고 그 결과를 받아)

JSON 포맷일 경우 파싱해서 사용가능한걸 실증!

D:\node_test>node test.js

{

    "name": "�Ļ�",

    "family": "�����ڱ�",

    "age": 1,

    "weight": 2.14

}

�Ļ� 


[링크 : http://tcpschool.com/json/json_basic_structure]

[링크 : https://www.w3schools.com/js/js_json_parse.asp]

'Programming > node.js' 카테고리의 다른 글

node.js jwt -JSON Web Token  (0) 2018.09.07
아직 쓸일은 없지만 걍 찾아본 node.js ssl 적용  (0) 2018.09.07
node.js express template  (0) 2018.09.06
node.js exec()  (0) 2018.09.06
node.js / express/ pug(jade) 문법  (0) 2018.09.05
Posted by 구차니