Lambda-School-Labs/shopping-cart-be

View on GitHub
index.js

Summary

Maintainability
A
0 mins
Test Coverage
const server = require('./server');
const port = process.env.PORT;

//bug fix branch

server.listen(port, () => {
    console.log(`listening on http://localhost:${port}`);
});