amazona
amazona copied to clipboard
SyntaxError: Unexpected identifier
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'); });`