question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Error: No files matching the pattern found

See original GitHub issue

Whenever i run the command provided on npm

clinic doctor --on-port 'autocannon http://localhost:$PORT' -- node server.js

I get the error below after autocannon has finished, not opening any html file;

Error: No files matching the pattern found
    at notFound (C:\Users\Womac\AppData\Roaming\npm\node_modules\clinic\node_modules\node-trace-log-join\index.js:65:15)
    at combine (C:\Users\Womac\AppData\Roaming\npm\node_modules\clinic\node_modules\node-trace-log-join\index.js:24:34)
    at C:\Users\Womac\AppData\Roaming\npm\node_modules\clinic\node_modules\node-trace-log-join\index.js:20:5
    at FSReqWrap.oncomplete (fs.js:153:20)

Node version: v9.8.0 Clinic version: v0.8.1

Clinic upload id: b3bcbf4df8e380

The repeatable test case is simply running the command detailed above, with the following server.js file

const restify = require('restify')
const {etagger, timestamp, fetchContent} = require('./util')()
const server = restify.createServer()

server.use(etagger().bind(server))

server.get('/seed/v1', function (req, res, next) {
    fetchContent(req.url, (err, content) => {
        if (err) 
            return next(err)
        res.send({data: content, url: req.url, ts: timestamp()})
        next()
    })
})

server.listen(3000);

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:6 (4 by maintainers)

github_iconTop GitHub Comments

2reactions
mafintoshcommented, Jun 25, 2018

Should be fixed in the latest release

0reactions
qinkangwucommented, Jun 22, 2018

update to Node 8.11.0

Read more comments on GitHub >

github_iconTop Results From Across the Web

How can I suppress the "No files matching the pattern ...
I have the same error. No files matching the pattern ".ts," were found. I just removed spaces between types .js, .ts, .tsx in...
Read more >
"No files matching the pattern" error · Issue #1645 · import-js ...
json files in my project, I get "No files matching the pattern" error from the import/no-unused-modules rule, and ESLint crashes. Steps to ...
Read more >
Getting an error 'No files matching the pattern were ... - YouTube
HTML : Getting an error ' No files matching the pattern were found ' when using prettier [ Beautify Your Computer ...
Read more >
eslint/eslint - Gitter
No files matching the pattern "." were found. Please check for typing mistakes in the pattern. error Command failed with exit code 2....
Read more >
ESLint: 8.5.0 No files matching the pattern "'**/*.{js,ts ... - Medium
{js,ts}'" were found. Please check for typing mistakes in the pattern. error Command failed with exit code 2. info Visit https://yarnpkg.com/en/ ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found