Code Monkey home page Code Monkey logo

Comments (11)

nickredmark avatar nickredmark commented on July 18, 2024 1

Hey @AaronNGray thanks for your suggestion. Just to have an estimate of the urgency of this: how do you feel about the current documentation? How is it lacking? https://github.com/nmaro/ooth/wiki

from ooth.

nickredmark avatar nickredmark commented on July 18, 2024 1

The documentation is now prettier :) https://nmaro.github.io/ooth/
I still keep this open for generated docs...

from ooth.

nickredmark avatar nickredmark commented on July 18, 2024 1

@chase-moskal his install problems most likely had a different nature since I only just introduced typescript.

from ooth.

AaronNGray avatar AaronNGray commented on July 18, 2024

Hi Nick, yeah I have had a quick look, I also tried building your code on Windows and Linux an had npm install problems so have to been able to evaluate it properly as of yet. I will try on Mac hopefully within the next few days as I am also very busy :)

from ooth.

AaronNGray avatar AaronNGray commented on July 18, 2024

The documentation looks a lot better.

One thing though is Ooth OAuth/OAuth2 compatible as it does not mention this at all in the documentation ?

from ooth.

nickredmark avatar nickredmark commented on July 18, 2024

I personally haven't needed it but it shouldn't be difficult to build a plugin on top of a passport.js strategy similarly to e.g. https://github.com/nmaro/ooth/tree/master/packages/ooth-facebook

from ooth.

MickaelBZH avatar MickaelBZH commented on July 18, 2024

Talking about documentation, do you have a way to customize the password validation for ooth-local?

from ooth.

nickredmark avatar nickredmark commented on July 18, 2024

@MickaelBZH yep, take this object as reference, and pass it as validators to the constructor, e.g.

const validators = {
  password: {
    test: (password: string) =>
      /\d/.test(password) && /[a-z]/.test(password) && /[A-Z]/.test(password) && /.{6,}/.test(password),
    error: 'validators.invalid_password',
  },
}
oothLocal({
  /* other configs */
  validators,
}))

from ooth.

MickaelBZH avatar MickaelBZH commented on July 18, 2024

Ok thanks. Another question related to ooth-local. Calling register set the email and the password, but not the username? Is that intended? Am I supposed to also call set-username after to actually set a username so a user can login with it?

from ooth.

nickredmark avatar nickredmark commented on July 18, 2024

@MickaelBZH correct. If you are motivated, the feature you are mentioning could be implemented by copying some logic from set-username to register.

from ooth.

chase-moskal avatar chase-moskal commented on July 18, 2024

@AaronNGray
I also tried building your code on Windows and Linux an had npm install problems so have to been able to evaluate it properly as of yet.

pull request #69 should fix the npm installation problems for you βœ”

from ooth.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.