We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Both run and verify hang, even for code exactly like the solution (which I arrived at by fudging a correct .css file.)
Eventually I get the following error:
✗ Error connecting to http://localhost:60381/main.css: socket hang up
Here's my code:```
const express = require('express'); const app = express(); app.use(require('stylus').middleware(process.argv[3])); app.use(express.static(process.argv[3])); app.listen(process.argv[2]);
const express = require('express'); const app = express();
app.use(require('stylus').middleware(process.argv[3])); app.use(express.static(process.argv[3]));
app.listen(process.argv[2]);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Both run and verify hang, even for code exactly like the solution (which I arrived at by fudging a correct .css file.)
Eventually I get the following error:
✗ Error connecting to http://localhost:60381/main.css: socket hang up
Here's my code:```
The text was updated successfully, but these errors were encountered: