├── .gitignore ├── index.js └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | console.log("Hello world"); 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Small-Shoppee 2 | Small shopee is an mini ecommerce website for small business to create an online store for seeling their products and getting orders and payments 3 | --------------------------------------------------------------------------------