A real and easy NodeJS service for create ecommerce platforms.
In less than five minutes you can have your ecommerce up and ready. 80cents is registered as a Node package with NPM. You can install the latest version of 80cents with the command:
npm install 80cents
After install NPM package, you need create the following structure of files and folders. If you want you can download our example:
.
├── environment
│ ├── development.yml
│ └── ..
├── 80cents.js
├── 80cents.yml
├── bower.json
├── gulpfile.coffee
├── package.json
80cents it's powered by ZEN-server. You can find proper settings for these files in the next links:
- development.yml (one of your environments for run the current instance)
- 80cents.js (main running NodeJS file)
- 80cents.yml (configuration of your 80cents instance)
- bower.json (bower dependencies)
- gulpfile.coffee (gulp tasks config file)
- package.json (node package dependencies)
Install dependencies and bower components:
npm install
bower install
And compiles:
gulp init
Now start application running the following command:
node 80cents.js
Your shop is running at http://localhost:1337
Manage your account at http://localhost:1337/admin. After admin registration let's start with basic information about your store:
In this section you can edit information about your store as Name, Homepage, Metas and Mail addresses for contact. Also, you can configure your shop address. This information will appears on your invoice.
Then you can edit Standard and Format for products details.
Start building your store creating some collections, in this example we are building a shop for sell or buy tech devices so we need a Mobile, Tablets and Desktop categories.
Select Collections from aside and click on Add a Collection button. Fill the form and after saving basic information you can upload images for this category.
The next step is to add products to categories. Select Products from aside and create a new one and edit product's information.
In this section you can define discounts for your customers. Define a code, description and if the discount is in percent or money. Also, you can configure your discount for entire order, collection or product.
Use this section to add static pages as About, Shipping, Returns, Terms of use or any other that you need.
Links for Pages are shown at footer. You can check Header Menu checkbox for have links at header.
With 80 cents you can choose as payment between PayPal or Stripe. You just need configure your keys.
Coming soon