Giter Club home page Giter Club logo

mime's Introduction

mime

Fast, robust, standards-compliant MIME decoder. Ships with extensive tests and fuzz tests.

Installation

npm install @ronomon/mime

Fast

  • Decodes on demand only as much as necessary to access a particular property. For example, if you need mime.subject, then MIME will search for the CRLF pair marking the end of the headers and decode only the subject header, without decoding any other headers and without decoding the body. This works well with the first few layers of spam defenses, which often only need to decode particular headers to reject an email.

  • Caches decoded properties for subsequent use.

  • Uses native fuzz-tested C++ Base64 and Quoted-Printable bindings. MIME's Base64 decoder in particular was developed for decoding wrapped Base64 more efficiently and detecting obvious corruption and character truncation.

  • Uses custom lookup tables to minimize the cost of branching through too many conditionals when decoding.

  • Avoids unnecessary string and buffer allocations. Algorithms accept and work with buffers directly, and allocate and copy buffers only when necessary.

  • Avoids regular expression decoders.

Robust

  • Provides detailed error messages which refer to the relevant RFCs to assist debugging, and which can be used directly as part of an SMTP reply.

  • Accepts CRLF and LF line-endings (which are common) but not CR line-endings (which are rare).

  • Accepts illegal transport padding frequently added by intermediaries (e.g. within the angle brackets of a msg-id or angle-addr, and between tokens in an encoded-word).

  • Decodes a variety of malformed but common mailbox syntaxes (e.g. no angle brackets around the addr-spec, with a display-name present on the left or right).

  • Removes balanced single quotes around the display-name or addr-spec in an email address (sometimes added by Outlook).

  • Decodes encoded-words not separated by WSP.

  • Decodes encoded-words with empty encoded-text.

  • Decodes encoded-words in Content-Type and Content-Disposition parameters (encoded by Outlook and Gmail contrary to RFC 2047 5 Use of encoded-words in message headers).

  • Rejects encoded-words containing malicious "mailsploit" control characters.

  • Removes any directory path components from an attachment name or filename (when accessed via mime.filename, see Usage below).

  • Decodes msg-ids not separated by whitespace or commas (i.e. separated only by angle brackets).

  • Rejects unrecognized Content-Transfer-Encoding mechanisms contrary to RFC 2045 6.4 (e.g. anything other than 7bit, 8bit, binary, base64, or quoted-printable). This is to avoid accepting responsibility for content which will not display correctly, if at all. In contrast, the spec advocates silently altering the Content-Type.

  • Rejects malicious RFC 2231 continuation indices designed to cause overallocation.

  • Rejects Base64 data containing illegal characters (anything which is not a valid Base64 or whitespace character, e.g. null bytes which could cause security issues).

  • Rejects Base64 data which is clearly truncated (as opposed to just missing padding).

  • Corrects Quoted-Printable data containing illegal characters (anything which is not a valid Quoted-Printable character, e.g. null bytes which could cause security issues).

  • Rejects illegal character sequences according to the specified charset.

  • Rejects truncated character sequences according to the specified charset.

  • Normalizes and aliases a variety of character sets to the canonical character set, (e.g. ks_c_5601-1987 is sometimes used by Outlook and is aliased to CP949 - Korean, otherwise the characters would decode from the wrong character set and be unintelligible).

  • Rejects unknown character sets not supported by iconv.

  • Decodes text/* body parts to UTF-8 buffers if the Content-Type indicates that the body is encoded in any other character set.

  • Rejects unterminated comments and quoted-strings.

  • Rejects invalid Content-Type syntax.

  • Detects missing multipart parts (e.g. no terminating boundary delimiter).

  • Rejects dangerous message/external-body and message/partial media types.

  • Decodes a variety of time zones and year formats.

  • Accepts missing time zone and assumes UTC to support email clients such as Blackberry which do not provide the required time zone in the Date header.

  • Rejects invalid Date header syntax.

  • Rejects missing From header.

  • Rejects headers containing forbidden characters.

  • Rejects folded header lines which exceed the 998 line length limit, but only after allowing for clients such as Outlook.com which exclude the field-name and colon from their character count, and which mistake the limit to be 1000 characters excluding the CRLF. The limit is in fact 998 characters excluding the CRLF.

  • Rejects multipart boundaries containing forbidden characters.

  • Rejects malicious data designed to cause CPU-intensive decoding and stack overflows.

  • Rejects malicious multiple occurrences of crucial headers and parameters, which could cause clients to render an email differently from that scanned by anti-virus software.

Standards-Compliant

  • RFC 5322 - Internet Message Format.

  • RFC 5321 - Simple Mail Transfer Protocol.

  • RFC 2045 - Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies.

  • RFC 2046 - Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types.

  • RFC 2047 - MIME (Multipurpose Internet Mail Extensions) Part Three: Message Header Extensions for Non-ASCII Text.

  • RFC 2183 - The Content-Disposition Header Field.

  • RFC 2231 - MIME Parameter Value and Encoded Word Extensions: Character Sets, Languages, and Continuations.

Usage

var MIME = require('@ronomon/mime');

// Instantiate a new mime instance (no decoding will take place):

var mime = new MIME.Message(buffer);

// Decoding will take place when the following getter properties are accessed.
// These getter properties may throw an exception for malformed MIME data.

mime.headers;             // { 'received': [<Buffer>] }
mime.body;                // <Buffer>

mime.from;                // [ { name: <String>, email: <String> } ]
mime.sender;              //   { name: <String>, email: <String> } / undefined
mime.replyTo;             // [ { name: <String>, email: <String> } ]
mime.to;                  // [ { name: <String>, email: <String> } ]
mime.cc;                  // [ { name: <String>, email: <String> } ]
mime.bcc;                 // [ { name: <String>, email: <String> } ]

mime.messageID;           //   <String> / undefined
mime.references;          // [ <String>, <String> ]
mime.inReplyTo;           // [ <String>, <String> ]

mime.date;                // <Unix Timestamp Integer>
mime.subject;             // <String>

mime.contentDisposition;  // { value: <String>, parameters: {} }
mime.contentType;         // { value: <String>, parameters: {} }
mime.contentID;           // <String> / undefined
mime.filename;            // <String> / undefined

mime.parts;               // [ <MIME.Message>, <MIME.Message> ]

Tests

To run all included tests and fuzz tests:

node test.js

mime's People

Contributors

jorangreef avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

mime's Issues

Unable to install on node.js 14

It is impossible for me to install it, i have the following error

image

I am using node.js 14.

Also I have this log :

0 info it worked if it ends with ok
1 verbose cli [
1 verbose cli 'C:\Program Files\nodejs\node.exe',
1 verbose cli 'C:\Program Files\nodejs\node_modules\npm\bin\npm-cli.js',
1 verbose cli 'install',
1 verbose cli '@ronomon/base64'
1 verbose cli ]
2 info using [email protected]
3 info using [email protected]
4 verbose npm-session 6f023cd41434b69a
5 silly install loadCurrentTree
6 silly install readLocalPackageData
7 http fetch GET 304 https://registry.npmjs.org/@ronomon%2fbase64 1764ms (from cache)
8 http fetch GET 200 https://registry.npmjs.org/@ronomon/base64/-/base64-2.4.1.tgz 16ms (from cache)
9 silly pacote tag manifest for @ronomon/base64@latest fetched in 1798ms
10 timing stage:loadCurrentTree Completed in 2289ms
11 silly install loadIdealTree
12 silly install cloneCurrentTreeToIdealTree
13 timing stage:loadIdealTree:cloneCurrentTree Completed in 4ms
14 silly install loadShrinkwrap
15 timing stage:loadIdealTree:loadShrinkwrap Completed in 258ms
16 silly install loadAllDepsIntoIdealTree
17 silly resolveWithNewModule @ronomon/[email protected] checking installable status
18 http fetch GET 200 https://registry.npmjs.org/nan 8ms (from cache)
19 silly pacote range manifest for nan@^2.11.0 fetched in 10ms
20 silly resolveWithNewModule [email protected] checking installable status
21 http fetch GET 304 https://registry.npmjs.org/@ronomon%2fqueue 1599ms (from cache)
22 silly pacote range manifest for @ronomon/queue@^3.0.0 fetched in 1601ms
23 silly resolveWithNewModule @ronomon/[email protected] checking installable status
24 timing stage:loadIdealTree:loadAllDepsIntoIdealTree Completed in 1922ms
25 timing stage:loadIdealTree Completed in 2256ms
26 silly currentTree [email protected]
26 silly currentTree +-- @azure/[email protected]
26 silly currentTree | +-- [email protected]
26 silly currentTree | -- [email protected] 26 silly currentTree +-- @azure/[email protected] 26 silly currentTree +-- @babel/[email protected] 26 silly currentTree +-- @hapi/[email protected] 26 silly currentTree +-- @mapbox/[email protected] 26 silly currentTree | -- [email protected]
26 silly currentTree +-- @microsoft/[email protected]
26 silly currentTree +-- @npmcli/[email protected]
26 silly currentTree +-- @ronomon/[email protected]
26 silly currentTree +-- @ronomon/[email protected]
26 silly currentTree +-- @tootallnate/[email protected]
26 silly currentTree +-- @types/[email protected]
26 silly currentTree +-- @types/[email protected]
26 silly currentTree +-- @types/[email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree | +-- [email protected]
26 silly currentTree | -- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree | +-- [email protected] 26 silly currentTree | -- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree | -- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree | +-- [email protected] 26 silly currentTree | +-- [email protected] 26 silly currentTree | +-- [email protected] 26 silly currentTree | +-- [email protected] 26 silly currentTree | -- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree | +-- [email protected]
26 silly currentTree | +-- [email protected]
26 silly currentTree | -- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree | -- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree | +-- [email protected]
26 silly currentTree | -- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree | +-- [email protected] 26 silly currentTree | -- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree | +-- [email protected]
26 silly currentTree | -- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree | +-- [email protected] 26 silly currentTree | -- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree | -- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree | -- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree | -- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree | -- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree | +-- [email protected]
26 silly currentTree | -- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree | -- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree | -- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree | +-- [email protected] 26 silly currentTree | +-- [email protected] 26 silly currentTree | +-- [email protected] 26 silly currentTree | +-- [email protected] 26 silly currentTree | -- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree | -- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree | +-- [email protected] 26 silly currentTree | -- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree | -- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree | +-- [email protected] 26 silly currentTree | -- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree | -- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree | +-- [email protected] 26 silly currentTree | +-- [email protected] 26 silly currentTree | -- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree | -- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree | -- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree +-- [email protected]
26 silly currentTree | +-- [email protected]
26 silly currentTree | +-- [email protected]
26 silly currentTree | +-- [email protected]
26 silly currentTree | +-- [email protected]
26 silly currentTree | +-- [email protected]
26 silly currentTree | -- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree +-- [email protected] 26 silly currentTree -- [email protected]
27 silly idealTree [email protected]
27 silly idealTree +-- @azure/[email protected]
27 silly idealTree | +-- [email protected]
27 silly idealTree | -- [email protected] 27 silly idealTree +-- @azure/[email protected] 27 silly idealTree +-- @babel/[email protected] 27 silly idealTree +-- @hapi/[email protected] 27 silly idealTree +-- @mapbox/[email protected] 27 silly idealTree | -- [email protected]
27 silly idealTree +-- @microsoft/[email protected]
27 silly idealTree +-- @npmcli/[email protected]
27 silly idealTree +-- @ronomon/[email protected]
27 silly idealTree +-- @ronomon/[email protected]
27 silly idealTree +-- @tootallnate/[email protected]
27 silly idealTree +-- @types/[email protected]
27 silly idealTree +-- @types/[email protected]
27 silly idealTree +-- @types/[email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree | +-- [email protected]
27 silly idealTree | -- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree | +-- [email protected] 27 silly idealTree | -- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree | -- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree | +-- [email protected] 27 silly idealTree | +-- [email protected] 27 silly idealTree | +-- [email protected] 27 silly idealTree | +-- [email protected] 27 silly idealTree | -- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree | +-- [email protected]
27 silly idealTree | +-- [email protected]
27 silly idealTree | -- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree | -- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree | +-- [email protected]
27 silly idealTree | -- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree | +-- [email protected] 27 silly idealTree | -- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree | +-- [email protected]
27 silly idealTree | -- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree | +-- [email protected] 27 silly idealTree | -- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree | -- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree | -- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree | -- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree | -- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree | +-- [email protected]
27 silly idealTree | -- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree | -- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree | -- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree | +-- [email protected] 27 silly idealTree | +-- [email protected] 27 silly idealTree | +-- [email protected] 27 silly idealTree | +-- [email protected] 27 silly idealTree | -- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree | -- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree | +-- [email protected] 27 silly idealTree | -- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree | -- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree | +-- [email protected] 27 silly idealTree | -- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree | -- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree | +-- [email protected] 27 silly idealTree | +-- [email protected] 27 silly idealTree | -- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree | -- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree | -- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree +-- [email protected]
27 silly idealTree | +-- [email protected]
27 silly idealTree | +-- [email protected]
27 silly idealTree | +-- [email protected]
27 silly idealTree | +-- [email protected]
27 silly idealTree | +-- [email protected]
27 silly idealTree | -- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree +-- [email protected] 27 silly idealTree -- [email protected]
28 silly install generateActionsToTake
29 timing stage:generateActionsToTake Completed in 27ms
30 silly diffTrees action count 3
31 silly diffTrees add @ronomon/[email protected]
32 silly diffTrees remove @ronomon/[email protected]
33 silly diffTrees remove [email protected]
34 silly decomposeActions action count 12
35 silly decomposeActions fetch @ronomon/[email protected]
36 silly decomposeActions extract @ronomon/[email protected]
37 silly decomposeActions preinstall @ronomon/[email protected]
38 silly decomposeActions build @ronomon/[email protected]
39 silly decomposeActions install @ronomon/[email protected]
40 silly decomposeActions postinstall @ronomon/[email protected]
41 silly decomposeActions finalize @ronomon/[email protected]
42 silly decomposeActions refresh-package-json @ronomon/[email protected]
43 silly decomposeActions unbuild @ronomon/[email protected]
44 silly decomposeActions remove @ronomon/[email protected]
45 silly decomposeActions unbuild [email protected]
46 silly decomposeActions remove [email protected]
47 silly install executeActions
48 silly doSerial global-install 12
49 verbose correctMkdir C:\Users\ionit\AppData\Roaming\npm-cache_locks correctMkdir not in flight; initializing
50 verbose makeCacheDir UID & GID are irrelevant on win32
51 verbose lock using C:\Users\ionit\AppData\Roaming\npm-cache_locks\staging-122210034669f08d.lock for D:\Faculty\Third Year - Second Semester\Licenta\uCET\node_modules.staging
52 silly doParallel extract 1
53 silly extract @ronomon/[email protected]
54 silly tarball trying @ronomon/base64@latest by hash: sha512-XwqijMZyXLvikDaE11o3TuPs30NFuhUxnYe10WfBi/bVWy7k6/GcbcVd/zfVi34nZTWWmxFsrXexX2JxfizLxw==
55 silly extract @ronomon/base64@latest extracted to D:\Faculty\Third Year - Second Semester\Licenta\uCET\node_modules.staging@ronomon\base64-de886aae (22ms)
56 timing action:extract Completed in 25ms
57 silly doReverseSerial unbuild 12
58 silly unbuild [email protected]
59 info lifecycle [email protected]preuninstall: [email protected]
60 info lifecycle [email protected]
uninstall: [email protected]
61 verbose unbuild rmStuff [email protected] from D:\Faculty\Third Year - Second Semester\Licenta\uCET\node_modules
62 info lifecycle [email protected]postuninstall: [email protected]
63 silly unbuild @ronomon/[email protected]
64 info lifecycle @ronomon/[email protected]
preuninstall: @ronomon/[email protected]
65 info lifecycle @ronomon/[email protected]uninstall: @ronomon/[email protected]
66 verbose unbuild rmStuff @ronomon/[email protected] from D:\Faculty\Third Year - Second Semester\Licenta\uCET\node_modules
67 info lifecycle @ronomon/[email protected]
postuninstall: @ronomon/[email protected]
68 timing action:unbuild Completed in 2ms
69 silly doSerial remove 12
70 silly remove D:\Faculty\Third Year - Second Semester\Licenta\uCET\node_modules@ronomon\quoted-printable
71 silly remove D:\Faculty\Third Year - Second Semester\Licenta\uCET\node_modules\iconv
72 timing action:remove Completed in 34ms
73 silly doSerial move 12
74 silly doSerial finalize 12
75 silly finalize D:\Faculty\Third Year - Second Semester\Licenta\uCET\node_modules@ronomon\base64
76 timing action:finalize Completed in 2ms
77 silly doParallel refresh-package-json 1
78 silly refresh-package-json D:\Faculty\Third Year - Second Semester\Licenta\uCET\node_modules@ronomon\base64
79 timing action:refresh-package-json Completed in 8ms
80 silly doParallel preinstall 1
81 silly preinstall @ronomon/[email protected]
82 info lifecycle @ronomon/[email protected]preinstall: @ronomon/[email protected]
83 timing action:preinstall Completed in 0ms
84 silly doSerial build 12
85 silly build @ronomon/[email protected]
86 info linkStuff @ronomon/[email protected]
87 silly linkStuff @ronomon/[email protected] has D:\Faculty\Third Year - Second Semester\Licenta\uCET\node_modules as its parent node_modules
88 timing action:build Completed in 1ms
89 silly doSerial global-link 12
90 silly doParallel update-linked 0
91 silly doSerial install 12
92 silly install @ronomon/[email protected]
93 info lifecycle @ronomon/[email protected]
install: @ronomon/[email protected]
94 verbose lifecycle @ronomon/[email protected]install: unsafe-perm in lifecycle true
95 verbose lifecycle @ronomon/[email protected]
install: PATH: C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin;D:\Faculty\Third Year - Second Semester\Licenta\uCET\node_modules@ronomon\base64\node_modules.bin;D:\Faculty\Third Year - Second Semester\Licenta\uCET\node_modules.bin;C:\Python37\Scripts;C:\Python37;C:\Scripts;C:;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Git\cmd;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\PuTTY;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\ProgramData\chocolatey\bin;C:\MinGW\bin;C:\Program Files\Java\jdk-11.0.10\bin;D:\Faculty\Third Year - Second Semester\ScA\eclipse\plugins\org.apache.ant_1.10.3.v20180417-1627\bin;C:\Program Files (x86)\Oracle\Java Card Development Kit Simulator 3.1.0\bin;C:\Program Files (x86)\Oracle\Java Card Tools 3.1.0\bin;C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bin;C:\Users\ionit\AppData\Roaming\npm;C:\Program Files\dotnet;C:\Program Files\Microsoft SQL Server\130\Tools\Binn;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn;C:\Program Files (x86)\dotnet;C:\Program Files\nodejs;C:\Users\ionit.windows-build-tools\python27;C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin;D:\Faculty\Third Year - Second Semester\Licenta\uCET\node_modules\windows-build-tools\node_modules.bin;D:\Faculty\Third Year - Second Semester\Licenta\uCET\node_modules.bin;C:\Python37\Scripts;C:\Python37;C:\Scripts;C:;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Git\cmd;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\PuTTY;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\ProgramData\chocolatey\bin;C:\MinGW\bin;C:\Program Files\Java\jdk-11.0.10\bin;D:\Faculty\Third Year - Second Semester\ScA\eclipse\plugins\org.apache.ant_1.10.3.v20180417-1627\bin;C:\Program Files (x86)\Oracle\Java Card Development Kit Simulator 3.1.0\bin;C:\Program Files (x86)\Oracle\Java Card Tools 3.1.0\bin;C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bin;C:\Users\ionit\AppData\Roaming\npm;C:\Program Files\dotnet;C:\Program Files\Microsoft SQL Server\130\Tools\Binn;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn;C:\Program Files (x86)\dotnet;C:\Program Files\nodejs;C:\Users\ionit\AppData\Local\Programs\Python\Python39\Scripts;C:\Users\ionit\AppData\Local\Programs\Python\Python39;C:\Users\ionit\AppData\Local\Programs\Microsoft VS Code\bin;C:\Program Files\heroku\bin;C:\Users\ionit\AppData\Local\Google\Cloud SDK\google-cloud-sdk\bin;C:\Program Files\JetBrains\DataGrip 2021.1.1\bin;C:\Users\ionit.dotnet\tools;C:\Program Files\JetBrains\JetBrains Rider 2021.1.2\bin;C:\Users\ionit.dotnet\tools
96 verbose lifecycle @ronomon/[email protected]install: CWD: D:\Faculty\Third Year - Second Semester\Licenta\uCET\node_modules@ronomon\base64
97 silly lifecycle @ronomon/[email protected]
install: Args: [ '/d /s /c', 'node-gyp rebuild' ]
98 timing audit submit Completed in 1042ms
99 http fetch POST 200 https://registry.npmjs.org/-/npm/v1/security/audits/quick 1042ms
100 timing audit body Completed in 0ms
101 silly lifecycle @ronomon/[email protected]install: Returned: code: 1 signal: null
102 info lifecycle @ronomon/[email protected]
install: Failed to exec install script
103 timing action:install Completed in 2190ms
104 verbose unlock done using C:\Users\ionit\AppData\Roaming\npm-cache_locks\staging-122210034669f08d.lock for D:\Faculty\Third Year - Second Semester\Licenta\uCET\node_modules.staging
105 timing stage:rollbackFailedOptional Completed in 7ms
106 timing stage:runTopLevelLifecycles Completed in 6910ms
107 silly saveTree [email protected]
107 silly saveTree +-- @azure/[email protected]
107 silly saveTree | +-- @azure/[email protected]
107 silly saveTree | | -- [email protected] 107 silly saveTree | | -- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | | -- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | | +-- [email protected] 107 silly saveTree | | | | +-- [email protected] 107 silly saveTree | | | | +-- [email protected] 107 silly saveTree | | | | | -- [email protected]
107 silly saveTree | | | | -- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | -- [email protected] 107 silly saveTree | -- [email protected]
107 silly saveTree +-- @microsoft/[email protected]
107 silly saveTree | +-- @babel/[email protected]
107 silly saveTree | | -- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | | -- [email protected]
107 silly saveTree | -- [email protected] 107 silly saveTree +-- @ronomon/[email protected] 107 silly saveTree | +-- @ronomon/[email protected] 107 silly saveTree | -- [email protected]
107 silly saveTree +-- [email protected]
107 silly saveTree | +-- @mapbox/[email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | | +-- @tootallnate/[email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | | -- [email protected] 107 silly saveTree | | | | -- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | | +-- [email protected]
107 silly saveTree | | | | -- [email protected] 107 silly saveTree | | | | +-- [email protected] 107 silly saveTree | | | | +-- [email protected] 107 silly saveTree | | | | +-- [email protected] 107 silly saveTree | | | | +-- [email protected] 107 silly saveTree | | | | +-- [email protected] 107 silly saveTree | | | | -- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | | +-- [email protected]
107 silly saveTree | | | | +-- [email protected]
107 silly saveTree | | | | +-- [email protected]
107 silly saveTree | | | | +-- [email protected]
107 silly saveTree | | | | +-- [email protected]
107 silly saveTree | | | | | +-- [email protected]
107 silly saveTree | | | | | +-- [email protected]
107 silly saveTree | | | | | | -- [email protected] 107 silly saveTree | | | | | -- [email protected]
107 silly saveTree | | | | | -- [email protected] 107 silly saveTree | | | | +-- [email protected] 107 silly saveTree | | | | -- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | | +-- [email protected]
107 silly saveTree | | | | | -- [email protected] 107 silly saveTree | | | | -- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | | -- [email protected] 107 silly saveTree | | | | +-- [email protected] 107 silly saveTree | | | | -- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | -- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | -- [email protected]
107 silly saveTree | -- [email protected] 107 silly saveTree +-- [email protected] 107 silly saveTree | -- [email protected]
107 silly saveTree +-- [email protected]
107 silly saveTree +-- [email protected]
107 silly saveTree | -- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | | -- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | -- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | -- [email protected]
107 silly saveTree | -- [email protected] 107 silly saveTree +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | -- [email protected]
107 silly saveTree +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | -- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | | +-- [email protected] 107 silly saveTree | | | +-- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | -- [email protected]
107 silly saveTree | | -- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | | -- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | -- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | -- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | -- [email protected] 107 silly saveTree +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | | +-- [email protected] 107 silly saveTree | | | | -- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | | -- [email protected] 107 silly saveTree | | | | -- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | | +-- [email protected] 107 silly saveTree | | | | -- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | -- [email protected] 107 silly saveTree | | -- [email protected]
107 silly saveTree | -- [email protected] 107 silly saveTree | -- [email protected]
107 silly saveTree +-- [email protected]
107 silly saveTree +-- [email protected]
107 silly saveTree | -- [email protected] 107 silly saveTree +-- [email protected] 107 silly saveTree +-- [email protected] 107 silly saveTree +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | | +-- [email protected] 107 silly saveTree | | | +-- [email protected] 107 silly saveTree | | | +-- [email protected] 107 silly saveTree | | | | -- [email protected]
107 silly saveTree | | | | -- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | -- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | -- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | | -- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | -- [email protected]
107 silly saveTree +-- [email protected]
107 silly saveTree | +-- @types/[email protected]
107 silly saveTree | | +-- @types/[email protected]
107 silly saveTree | | | -- @types/[email protected] 107 silly saveTree | | -- @types/[email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | -- [email protected]
107 silly saveTree | | -- [email protected] 107 silly saveTree | | -- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | -- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | -- [email protected]
107 silly saveTree +-- [email protected]
107 silly saveTree +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | | -- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | | +-- @npmcli/[email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | | -- [email protected] 107 silly saveTree | | | | +-- [email protected] 107 silly saveTree | | | | -- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | | +-- [email protected] 107 silly saveTree | | | | -- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | | +-- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | | -- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | -- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | -- [email protected] 107 silly saveTree | -- [email protected]
107 silly saveTree +-- [email protected]
107 silly saveTree +-- [email protected]
107 silly saveTree | +-- @hapi/[email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | | -- [email protected] 107 silly saveTree | | | | -- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | -- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | -- [email protected]
107 silly saveTree | | -- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | | -- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | | -- [email protected] 107 silly saveTree | -- [email protected]
107 silly saveTree +-- [email protected]
107 silly saveTree +-- [email protected]
107 silly saveTree | -- [email protected] 107 silly saveTree +-- [email protected] 107 silly saveTree -- [email protected]
107 silly saveTree +-- [email protected]
107 silly saveTree | -- [email protected] 107 silly saveTree | -- [email protected]
107 silly saveTree | -- [email protected] 107 silly saveTree +-- [email protected] 107 silly saveTree | -- [email protected]
107 silly saveTree +-- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | -- [email protected] 107 silly saveTree +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | -- [email protected]
107 silly saveTree | +-- [email protected]
107 silly saveTree | -- [email protected] 107 silly saveTree +-- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | -- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | | +-- [email protected] 107 silly saveTree | | | +-- [email protected] 107 silly saveTree | | | | +-- [email protected] 107 silly saveTree | | | | | -- [email protected]
107 silly saveTree | | | | | -- [email protected] 107 silly saveTree | | | | -- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | | +-- [email protected] 107 silly saveTree | | | | +-- [email protected] 107 silly saveTree | | | | | +-- [email protected] 107 silly saveTree | | | | | -- [email protected]
107 silly saveTree | | | | -- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | | +-- [email protected]
107 silly saveTree | | | | | -- [email protected] 107 silly saveTree | | | | | -- [email protected]
107 silly saveTree | | | | -- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | | +-- [email protected]
107 silly saveTree | | | | | -- [email protected] 107 silly saveTree | | | | | -- [email protected]
107 silly saveTree | | | | +-- [email protected]
107 silly saveTree | | | | -- [email protected] 107 silly saveTree | | | | -- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | | +-- [email protected] 107 silly saveTree | | | | -- [email protected]
107 silly saveTree | | | | -- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | -- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | -- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | -- [email protected]
107 silly saveTree | | -- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | | +-- [email protected] 107 silly saveTree | | | | +-- [email protected] 107 silly saveTree | | | | +-- [email protected] 107 silly saveTree | | | | +-- [email protected] 107 silly saveTree | | | | -- [email protected]
107 silly saveTree | | | | -- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | | +-- [email protected]
107 silly saveTree | | | | +-- [email protected]
107 silly saveTree | | | | -- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | | -- [email protected] 107 silly saveTree | | | +-- [email protected] 107 silly saveTree | | | +-- [email protected] 107 silly saveTree | | | | -- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | +-- [email protected]
107 silly saveTree | | | -- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | +-- [email protected] 107 silly saveTree | | | +-- [email protected] 107 silly saveTree | | | -- [email protected]
107 silly saveTree | | +-- [email protected]
107 silly saveTree | | -- [email protected] 107 silly saveTree | +-- [email protected] 107 silly saveTree | -- [email protected]
107 silly saveTree -- [email protected] 107 silly saveTree +-- [email protected] 107 silly saveTree -- [email protected]
107 silly saveTree -- [email protected] 108 verbose stack Error: @ronomon/[email protected] install: node-gyp rebuild108 verbose stack Exit status 1 108 verbose stack at EventEmitter.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\index.js:332:16) 108 verbose stack at EventEmitter.emit (events.js:376:20) 108 verbose stack at ChildProcess.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\lib\spawn.js:55:14) 108 verbose stack at ChildProcess.emit (events.js:376:20) 108 verbose stack at maybeClose (internal/child_process.js:1055:16) 108 verbose stack at Process.ChildProcess._handle.onexit (internal/child_process.js:288:5) 109 verbose pkgid @ronomon/[email protected] 110 verbose cwd D:\Faculty\Third Year - Second Semester\Licenta\uCET 111 verbose Windows_NT 10.0.19042 112 verbose argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install" "@ronomon/base64" 113 verbose node v14.17.0 114 verbose npm v6.14.13 115 error code ELIFECYCLE 116 error errno 1 117 error @ronomon/[email protected] install:node-gyp rebuild`
117 error Exit status 1
118 error Failed at the @ronomon/[email protected] install script.
118 error This is probably not a problem with npm. There is likely additional logging output above.
119 verbose exit [ 1, true ]

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.