a simple golang web app framework with a very simple authentication system.
The database used is NoSQL MongoDB.
Client --> API --> Database
Any response to the html is sent by AJAX or the variable from the controller. Controllers and Routes configuration are set in /routes folder.
- Create Users (Sign Up)
- Update Users
- Delete Users
- Get Users
- Encrypted Password
- Login
- Logout
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
"github.com/dgrijalva/jwt-go"
"github.com/rs/xid"
"golang.org/x/crypto/bcrypt"
"github.com/rivo/sessions"
"github.com/gorilla/mux"