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
Hi,
I keep getting "SyntaxError: Unexpected identifier" when trying to run node in the beginning of lesson 9.
I also added "type": "module" in the package.json. Nothing works.
Here is my code in server.js:
`import express from 'express'; import data from './data.js';
const app = express();
app.get('/api/products', (req, res) => { res.send(data.products); });
app.get('/', (req, res) => { res.send('Server is ready'); });
app.listen(5000, () => { console.log('Serve at http://localhost:5000'); });`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I keep getting "SyntaxError: Unexpected identifier" when trying to run node in the beginning of lesson 9.
I also added "type": "module" in the package.json. Nothing works.
Here is my code in server.js:
`import express from 'express';
import data from './data.js';
const app = express();
app.get('/api/products', (req, res) => {
res.send(data.products);
});
app.get('/', (req, res) => {
res.send('Server is ready');
});
app.listen(5000, () => {
console.log('Serve at http://localhost:5000');
});`
The text was updated successfully, but these errors were encountered: