로그 부팅

1810 단어 nodejavascript
개발자가 nodejs를 처리하는 과정에서 응용 프로그램은 자주 컨트롤러에서 사용된다.빠르게 디버깅하거나 코드의 경고와 오류를 표시하기 위해 관건적인 코드 진도를 가시화하기 위해 로그인하십시오.
logbootstrap module 컬러 로그 메시지를 사용할 수 있기 때문에 매우 간단합니다.사용 가능한 색상은 부트 키트의 색상과 같습니다.
  • 그린: 성공 소식
  • 노란색: 경고용
  • 청색: 간단한 정보 하나
  • 그레이: 보조 메시지
  • 파란색: 매우 중요한 주요 정보 하나
  • 빨간색: 오류 메시지
  • 간단한 nodejs 응용 프로그램을 만듭니다.
    $ 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/

    좋은 웹페이지 즐겨찾기