0.0.7 • Published 6 years ago

@jschmold/users v0.0.7

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

Password hash rounds are stored in the application If you increase the hash rounds, use the 'Created' date to determine hash rounds, and to suggest resets to users

Testing methodology

  $method -- A static/class method
  #method -- An instance method

The easiest way to remember how this library works is this. Instance methods are written to modify this instance, and class methods are written to return something.

For example. Lets say you're more of an object oriented programmer. You can work it like this

let myInstance = className.fromObject()
myInstance.doModification();
saveInDatabase(myInstance);

Or, if you're more functional

let obj = loadFromDatabase(/*query*/)
    obj = className.PerformModification(obj);
saveInDatabase(obj);

// or

saveInDatabase(
  className.PeformModification(
    loadFromDatabase({
      // query
    })
  )
);
0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago