Error: No files matching the pattern found
See original GitHub issueWhenever 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:
- Created 5 years ago
- Comments:6 (4 by maintainers)
Top 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 >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Should be fixed in the latest release
update to Node 8.11.0