Skip to content
New issue

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

SyntaxError: Unexpected identifier #90

Open
Eesok opened this issue May 11, 2021 · 0 comments
Open

SyntaxError: Unexpected identifier #90

Eesok opened this issue May 11, 2021 · 0 comments

Comments

@Eesok
Copy link

Eesok commented May 11, 2021

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');
});`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant