Skip to content

Commit c0e1976

Browse files
committed
cart 담기 구현
1 parent 34c830f commit c0e1976

44 files changed

Lines changed: 4482 additions & 4 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

app.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,14 @@ var contacts = require('./routes/contacts');
3737
var auth = require('./routes/auth');
3838
//chat
3939
var chat = require('./routes/chat');
40-
//cart
40+
//products
4141
var products = require('./routes/products');
42+
//cart
43+
var cart = require('./routes/cart');
4244
//home
4345
var home = require('./routes/home');
4446

47+
4548
var app = express();
4649
var port = 3000;
4750

@@ -106,6 +109,7 @@ app.use('/accounts', accounts);
106109
app.use('/auth', auth);
107110
app.use('/chat', chat);
108111
app.use('/products', products);
112+
app.use('/cart', cart);
109113
app.use('/', home);
110114

111115

node_modules/express-paginate/.jshintrc

Lines changed: 54 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/express-paginate/.npmignore

Lines changed: 105 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/express-paginate/.travis.yml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/express-paginate/History.md

Lines changed: 67 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/express-paginate/LICENSE

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)