로그 부팅
1810 단어 nodejavascript
logbootstrap module 컬러 로그 메시지를 사용할 수 있기 때문에 매우 간단합니다.사용 가능한 색상은 부트 키트의 색상과 같습니다.
$ mkdir ~/helloworld
$ cd ~/helloword
$ npm init
$ npm install logbootstrap
$ nano index.js
색인 파일.js는 간단한 단점 API로 가장 고전적인 "Hello World!"const http = require('http');
const log = require('logbootstrap);
const hostname = '127.0.0.1';
const port = 3000;
const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end('Hello, World!\n');
});
server.listen(port, hostname, () => {
log('info', 'Server running at http://' + hostname + ':' + port + '/');
log('success', 'Success log information');
log('warning', 'Warning log information');
log('secondary', 'Secondary log information');
log('primary', 'Primary log information');
log('danger', 'Danger log information');
});
우리는 코드를 실행합니다.좋은 컬러 코드!
GitHub 프로젝트: https://gzileni.github.io/logbootstrap/
Reference
이 문제에 관하여(로그 부팅), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/gzileni/logbootstrap-1cjg텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)