일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- OSX
- WebAuthn
- FIDO2
- otpkey
- MYSQL
- SwiftUI
- git
- kmip
- 애플
- OTP
- 앱스토어
- SSH
- SWIFT
- albumbook
- css
- MSYS2
- Nodejs
- Xcode
- MFA
- fido
- 안드로이드
- 앨범북
- appres
- openssl
- 앱리소스
- Android
- 인증
- SSL
- apple
- 2FA
- Today
- Total
목록개발 플랫폼 및 언어/노드 Node & NPM (15)
인디노트
const net = require('net'); // IPv4인지 확인 if (net.isIPv4('192.168.0.1')) { console.log('This is an IPv4 address'); } // IPv6인지 확인 if (net.isIPv6('2001:0db8:85a3:0000:0000:8a2e:0370:7334')) { console.log('This is an IPv6 address'); }
https://medium.com/jspoint/a-simple-guide-to-load-c-c-code-into-node-js-javascript-applications-3fcccf54fd32 A simple guide to load C/C++ code into Node.js JavaScript Applications In this article, we are going to get ourselves familiar with the mechanism and tools to load the C/C++ code dynamically in JavaScript… medium.com
Node.js에서 NIC(Network Interface Card) 정보를 읽어오는 방법은 os 모듈을 사용하는 것입니다. os 모듈은 Node.js의 내장 모듈로, 운영체제와 관련된 정보에 접근할 수 있는 기능을 제공합니다. 다음은 Node.js에서 NIC 정보를 읽어오는 예시 코드입니다. const os = require('os'); // 현재 시스템의 NIC 정보 가져오기 const networkInterfaces = os.networkInterfaces(); // NIC 정보 출력 console.log('NIC 정보:'); for (const [name, interfaces] of Object.entries(networkInterfaces)) { console.log(`\n인터페이스명: ${nam..
// server.js const express = require('express'); const app = express(); // CORS (Cross-Origin Resource Sharing) 설정 app.use((req, res, next) => { res.header('Access-Control-Allow-Origin', '*'); res.header('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE'); res.header('Access-Control-Allow-Headers', 'Content-Type, Authorization'); next(); }); // POST 요청의 바디 파싱을 위한 미들웨어 설정 app.use(express.js..
출처 : https://z-wony.tistory.com/12 Node.js 용 c++ Addon을 gcc로 컴파일하기 (node-gyp 없이) Node.js의 명성과 장점은 굳이 제가 언급할 필요도 없을 것입니다. 획기적인 생산성을 제공하기로 유명한데, 그래도 저같은 C 개발자가 처음 Node.js 프로젝트에 합류했을 때에는 여전히 일부 모듈 z-wony.tistory.com
developer.okta.com/blog/2019/06/18/command-line-app-with-nodejs Build a Command Line Application with Node.js Learn how to build command line applications using Node.js developer.okta.com Command line applications (CLI) are often the core tools for automating tasks, such as deploying production applications, running tests, building reports, migrating data, DevOps, and the list goes on and on. If..
jongmin92.github.io/2017/07/13/Node/require/ require는 어떻게 동작할까? Index Node.js의 모듈 로딩 시스템 require가 갖는 문제점 대 / 소문자 구분 NPM 모듈 종속성 마치며 Node.js를 사용하며 문득 require에 대해 궁금증이 생겼습니다. 대부분 자주 사용하는 코드를 모듈 형식 jongmin92.github.io
SSH2 client and server modules written in pure JavaScript for node.js. Development/testing is done against OpenSSH (8.0 currently). mscdex/ssh2 SSH2 client and server modules written in pure JavaScript for node.js - mscdex/ssh2 github.com
Node.js와 외부 프로그램(Java, C, C++) 연결 (bridge)BY JCDGODS · 2018년 6월 26일서버를 만들다 보면 NPM 패키지에 포함되지 않은 기능이 필요한 경우가 생긴다.이런 경우, 어쩔수 없이 다른 프로그래밍 언어를 사용해야하는 경우가 발생한다. 또한 성능 문제로 반드시 C,C++를 써야하는 경우가 생기기도 한다.Node.js에서 타 언어 프로그램을 호출하는 경우 여러가지 방법이 있지만, 나의 경우에는 한가지 프로그램만 실행하면 되었기 때문에 child_process 패키지의 exec를 사용했다. (터미널 터맨드와 동일)(1) STDOUT을 이용한 처리 방법물론 이 방법은 터미널 명령이기 때문에 위험하다. (하지만.. 뭐 소스가 변조되지 않는 이상은 문제가 없을 것이고, 이..
Node.js plain TLS Client & Server, 2-way Cert Auth Node.js TLS plain TLS socketsThis guide shows how to set up a bidirectional client/server authentication for plain TLS sockets.Prepare certificatesGenerate a Certificate Authority:openssl req -new -x509 -days 9999 -keyout ca-key.pem -out ca-crt.pemInsert a CA PasswordSpecify a CA Common Name, like 'root.localhost' or 'ca.localhost'. This MUST be..