lovio
v1.0.14
Published
<p align="center"> <a href="http://gulpjs.com"> <img src="https://raw.githubusercontent.com/uptownhr/hackable/master/public/site/img/hackable-logo.png"> </a> <p align="center">Personal site starter for nodejs developers.</p> </p>
Downloads
1
Readme
hackable
Personal site starter for nodejs developers.
Hackable comes pre-built with an admin that is easy to hack with your nodejs chops. Hackable keeps things familiar and uses libraries common to expressjs or koajs. No new API's to learn - no magic.
The goal of the project is to provide you with a hackable prototype that you can mold to your liking.
If you've been thinking about creating a personal site or a site for your project, give Hackable a shot!.
Demo
Admin Login: [email protected] / asdfasdf
To access admin, use pull-down menu once logged in as admin or go to /admin
Main Stack
- Koa / Express (older release 1.4.0
- Mongoose
- Pug (previously known as Jade)
- Passport
Features
- Login
- Email / Password
- Twitter, Github, Facebook, Gmail
- Admin
- Users
- Posts
- Projects
- Products
- Files
- Website
- Landing Page
- Projects
- Products
- Blog
- Landing Page
Getting Started
The easiest way to get started and the workflow we recommend is using docker. Docker handles the service depencies for the application to run. For example, Mongodb and Redis will be started and connected to the application automaticlaly. You do not have to worry about installation steps or muddying your host machine with additional services.
If you have docker available, you can get started in two steps.
Steps
- git clone [email protected]:uptownhr/hackable
- cd hackable
- docker-compose up
- visit http://localhost:3000 on your browser *if running docker on osx/windows, you'll use the vbox IP instead of localhost
Docker Installation
NPM Helper commands
- Getting into the app container:
npm run docker-app
- Getting into the mongo shell:
npm run docker-mongo
- NPM inside the app container:
npm run docker-npm
Guides and Examples
List of Packages
| Package | Description | | ------------------------------- | --------------------------------------------------------------------- | | babel-preset-stage-3 | To obtain latest approved JS features | | babel-register | To auto compile on runtime | | bcrypt-nodejs | Library for hashing and salting user passwords. | | bluebird | Promise Utility | | crypto | To create hash | | koa | Node.js framework using async | | koa-bodyparser | koa middleware gives, ctx.request.body | | koa-convert | koa middleware to convert to new 2.0 middleware style | | koa-generic-session | koa middleware handles cookies and session | | koa-multer | koa middleware handles file uploads | | koa-passport | koa middleware single-sign on | | koa-pug | koa middleware view template (formly known as jade) | | koa-redis | koa middleware redis sessionas | | koa-router | koa middleware creating controllers | | koa-static | koa middleware serve static files | | koa-validate | koa middleware request validation | | mongoose | MongoDB ODM. | | passport-facebook | Sign-in with Facebook plugin. | | passport-github | Sign-in with GitHub plugin. | | passport-google-oauth | Sign-in with Google plugin. | | passport-twitter | Sign-in with Twitter plugin. | | passport-instagram | Sign-in with Instagram plugin. | | passport-local | Sign-in with Username and Password plugin. | | passport-oauth | Allows you to set up your own OAuth 1.0a and OAuth 2.0 strategies. | | stripe | Offical Stripe API library. | | lodash | Handy JavaScript utlities library. | | mocha | Test framework. | | chai | BDD/TDD assertion library. | | supertest | HTTP assertion library. | | qs | parse query string | | remarkable | parse and convert markdown |