Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

Silom/frame

 
 

Repository files navigation

About this fork

I removed the static jade file in plugins/web/, so we can use a external project folder for ngFrame.

Please change the destination path in your manifest file.

default var destination = require('path').join(__dirname, '../public/dist/')

Frame

A user system API for Node.js. Bring your own front-end.

Build Status Dependency Status devDependency Status

Technology

Primary goal: include as few dependencies as possible

Frame is built with the hapi.js framework and toolset. We're using MongoDB as a data store. We also use Nodemailer for email transport.

Live demo

endpoint username password
https://hapiframe.herokuapp.com/ root root

Postman is a great tool for testing and developing APIs. See the wiki for details on how to login.

Note: The live demo has been modified so you cannot change the root user, the root user's linked admin role or the root admin group. This was done in order to keep the API ready to use at all times.

Requirements

You need Node.js and MongoDB installed and running.

We use bcrypt for hashing secrets. If you have issues during installation related to bcrypt then refer to this wiki page.

Installation

$ git clone [email protected]:jedireza/frame.git && cd ./frame
$ npm install

Setup

WARNING: This will clear all data in existing users, admins and adminGroups MongoDB collections. It will also overwrite /config.js if one exists.

$ npm run setup

# > [email protected] setup /Users/jedireza/projects/frame
# > ./setup.js

# Project name: (Frame)
# MongoDB URL: (mongodb://localhost:27017/frame)
# Root user email: [email protected]
# Root user password:
# System email: ([email protected])
# SMTP host: (smtp.gmail.com)
# SMTP port: (465)
# SMTP username: ([email protected])
# SMTP password:
# Setup complete.

Running the app

$ npm start

# > [email protected] start /Users/jedireza/projects/frame
# > ./node_modules/nodemon/bin/nodemon.js -e js,md server

# 20 Sep 03:47:15 - [nodemon] v1.2.1
# 20 Sep 03:47:15 - [nodemon] to restart at any time, enter `rs`
# 20 Sep 03:47:15 - [nodemon] watching: *.*
# 20 Sep 03:47:15 - [nodemon] starting `node server index.js`
# Started the plot device.

This will start the app using nodemon. nodemon will watch for changes and restart the app as needed.

Philosophy

  • Create a user system API
  • Don't include a front-end
  • Write code in a simple and consistent way
  • It's just JavaScript
  • 100% test coverage

Features

  • Login system with forgot password and reset password
  • Abusive login attempt detection
  • User roles for accounts and admins
  • Facilities for notes and status updates
  • Admin groups with shared permissions
  • Admin level permissions that override group permissions

Questions and contributing

Any issues or questions (no matter how basic), open an issue. Please take the initiative to include basic debugging information like operating system and relevant version details such as:

$ npm version

# { http_parser: '1.0',
#   node: '0.10.29',
#   v8: '3.14.5.9',
#   ares: '1.9.0-DEV',
#   uv: '0.10.27',
#   zlib: '1.2.3',
#   modules: '11',
#   openssl: '1.0.1h',
#   npm: '1.4.20',
#   frame: '0.0.0' }

Contributions welcome. Your code should:

If you're changing something non-trivial, you may want to submit an issue first.

Running tests

Lab is part of the hapi.js toolset and what we use to write all of our tests.

For command line output:

$ npm test

# > [email protected] test /Users/jedireza/projects/frame
# > ./node_modules/lab/bin/lab -c

# ..................................................
# ..................................................
# ..................................................
# ..................................................
# ..................................................
# .............................

# 249 tests complete
# Test duration: 4628 ms
# No global variable leaks detected
# Coverage: 100.00%

With html code coverage report:

$ npm run test-cover

# > [email protected] test-cover /Users/jedireza/projects/frame
# > ./node_modules/lab/bin/lab -c -r html -o ./test/artifacts/coverage.html && open ./test/artifacts/coverage.html

This will run the tests and open a web browser to the visual code coverage artifacts. The generated source can be found in /tests/artifacts/coverage.html.

License

MIT

Don't forget

What you build with Frame is more important than Frame.

About

A user system API for Node.js

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%