Updated the files.
This commit is contained in:
parent
1553e6b971
commit
753967d4f5
23418 changed files with 3784666 additions and 0 deletions
15
my-app/node_modules/proc-log/LICENSE
generated
vendored
Executable file
15
my-app/node_modules/proc-log/LICENSE
generated
vendored
Executable file
|
@ -0,0 +1,15 @@
|
|||
The ISC License
|
||||
|
||||
Copyright (c) GitHub, Inc.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted, provided that the above
|
||||
copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
||||
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
90
my-app/node_modules/proc-log/README.md
generated
vendored
Executable file
90
my-app/node_modules/proc-log/README.md
generated
vendored
Executable file
|
@ -0,0 +1,90 @@
|
|||
# proc-log
|
||||
|
||||
Emits 'log' events on the process object which a log output listener can
|
||||
consume and print to the terminal.
|
||||
|
||||
This is used by various modules within the npm CLI stack in order to send
|
||||
log events that can be consumed by a listener on the process object.
|
||||
|
||||
## API
|
||||
|
||||
* `log.error(...args)` calls `process.emit('log', 'error', ...args)`
|
||||
The highest log level. For printing extremely serious errors that
|
||||
indicate something went wrong.
|
||||
* `log.warn(...args)` calls `process.emit('log', 'warn', ...args)`
|
||||
A fairly high log level. Things that the user needs to be aware of, but
|
||||
which won't necessarily cause improper functioning of the system.
|
||||
* `log.notice(...args)` calls `process.emit('log', 'notice', ...args)`
|
||||
Notices which are important, but not necessarily dangerous or a cause for
|
||||
excess concern.
|
||||
* `log.info(...args)` calls `process.emit('log', 'info', ...args)`
|
||||
Informative messages that may benefit the user, but aren't particularly
|
||||
important.
|
||||
* `log.verbose(...args)` calls `process.emit('log', 'verbose', ...args)`
|
||||
Noisy output that is more detail that most users will care about.
|
||||
* `log.silly(...args)` calls `process.emit('log', 'silly', ...args)`
|
||||
Extremely noisy excessive logging messages that are typically only useful
|
||||
for debugging.
|
||||
* `log.http(...args)` calls `process.emit('log', 'http', ...args)`
|
||||
Information about HTTP requests made and/or completed.
|
||||
* `log.pause()` calls `process.emit('log', 'pause')` Used to tell
|
||||
the consumer to stop printing messages.
|
||||
* `log.resume()` calls `process.emit('log', 'resume')`
|
||||
Used to tell the consumer that it is ok to print messages again.
|
||||
* `log.LEVELS` an array of strings of all log method names
|
||||
|
||||
## Examples
|
||||
|
||||
Every method calls `process.emit('log', level, ...otherArgs)` internally.
|
||||
So in order to consume those events you need to do `process.on('log', fn)`.
|
||||
|
||||
### Colorize based on level
|
||||
|
||||
Here's an example of how to consume `proc-log` events and colorize them
|
||||
based on level:
|
||||
|
||||
```js
|
||||
const chalk = require('chalk')
|
||||
|
||||
process.on('log', (level, ...args) => {
|
||||
if (level === 'error') {
|
||||
console.log(chalk.red(level), ...args)
|
||||
} else {
|
||||
console.log(chalk.blue(level), ...args)
|
||||
}
|
||||
})
|
||||
```
|
||||
|
||||
### Pause and resume
|
||||
|
||||
`pause` and `resume` are included so you have the ability to tell your consumer
|
||||
that you want to pause or resume your display of logs. In the npm CLI we use
|
||||
this to buffer all logs on init until we know the correct loglevel to display.
|
||||
But we also setup a second handler that writes everything to a file even if
|
||||
paused.
|
||||
|
||||
```js
|
||||
let paused = true
|
||||
const buffer = []
|
||||
|
||||
// this handler will buffer and replay logs only
|
||||
// after `procLog.resume()` is called
|
||||
process.on('log', (level, ...args) => {
|
||||
if (level === 'resume') {
|
||||
buffer.forEach((item) => console.log(...item))
|
||||
paused = false
|
||||
return
|
||||
}
|
||||
|
||||
if (paused) {
|
||||
buffer.push([level, ...args])
|
||||
} else {
|
||||
console.log(level, ...args)
|
||||
}
|
||||
})
|
||||
|
||||
// this handler will write everything to a file
|
||||
process.on('log', (...args) => {
|
||||
fs.appendFileSync('debug.log', args.join(' '))
|
||||
})
|
||||
```
|
23
my-app/node_modules/proc-log/lib/index.js
generated
vendored
Executable file
23
my-app/node_modules/proc-log/lib/index.js
generated
vendored
Executable file
|
@ -0,0 +1,23 @@
|
|||
// emits 'log' events on the process
|
||||
const LEVELS = [
|
||||
'notice',
|
||||
'error',
|
||||
'warn',
|
||||
'info',
|
||||
'verbose',
|
||||
'http',
|
||||
'silly',
|
||||
'pause',
|
||||
'resume',
|
||||
]
|
||||
|
||||
const log = level => (...args) => process.emit('log', level, ...args)
|
||||
|
||||
const logger = {}
|
||||
for (const level of LEVELS) {
|
||||
logger[level] = log(level)
|
||||
}
|
||||
|
||||
logger.LEVELS = LEVELS
|
||||
|
||||
module.exports = logger
|
44
my-app/node_modules/proc-log/package.json
generated
vendored
Executable file
44
my-app/node_modules/proc-log/package.json
generated
vendored
Executable file
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
"name": "proc-log",
|
||||
"version": "3.0.0",
|
||||
"files": [
|
||||
"bin/",
|
||||
"lib/"
|
||||
],
|
||||
"main": "lib/index.js",
|
||||
"description": "just emit 'log' events on the process object",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/npm/proc-log.git"
|
||||
},
|
||||
"author": "GitHub Inc.",
|
||||
"license": "ISC",
|
||||
"scripts": {
|
||||
"test": "tap",
|
||||
"snap": "tap",
|
||||
"posttest": "npm run lint",
|
||||
"postsnap": "eslint index.js test/*.js --fix",
|
||||
"lint": "eslint \"**/*.js\"",
|
||||
"postlint": "template-oss-check",
|
||||
"lintfix": "npm run lint -- --fix",
|
||||
"template-oss-apply": "template-oss-apply --force"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@npmcli/eslint-config": "^3.0.1",
|
||||
"@npmcli/template-oss": "4.5.1",
|
||||
"tap": "^16.0.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
||||
},
|
||||
"templateOSS": {
|
||||
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
|
||||
"version": "4.5.1"
|
||||
},
|
||||
"tap": {
|
||||
"nyc-arg": [
|
||||
"--exclude",
|
||||
"tap-snapshots/**"
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue