npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

realm-auth-ext

v1.0.8

Published

Kết hợp với Realm Web và tối ưu hóa các hàm của Realm Web để dễ dàng tương tác giữa Realm và Frontend Website

Readme

REALM-AUTH-EXT

Cài đặt:

$ npm install --save realm-auth-ext

Cài đặt Dependencies:

$ npm install --save lodash moment realm-web

Hướng dẫn sử dụng:

Bước 1: Khởi tạo và gọi Services Auth

import {serviceAuth} from 'realm-auth-ext';
let RealmId = "example";
let dbName = "database";
let sAuth = new serviceAuth(RealmId,dbName);

Bước 2: Đăng nhập để có thể sử dụng các Services khác:

let result = await sAuth.loginWithEmail({
    email: "email",
    password: "pass",
  })
  // Return
  // TRUE: trả về {success:true, user}
  // FALSE: trả về {success:false. error}

Bước 3: Sử dụng các services khác

import {serviceUser} from 'realm-auth-ext';
let sUser = new serviceUser(sAuth)

Các Services hiện tại

serviceAuth: Dùng để đăng nhập và đăng ký tài khoản.

serviceUser: Dùng để tạo CustomData User và Quản lý thông tin User trên Database (collection mặc định: "users").

serviceRole: Quản lý Permission và Actions trên Database (chưa hoàn thành)

Các thuộc tính, hàm trong serviceAuth

Getter

getAppId: Trả về mã RealmId

getApp: Trả về Realm instance

getCurrentUser: Trả về User hiện tại đang đăng nhập ( Null nếu chưa đăng nhập)

getMongoDb: Trả về MongoDB ( null nếu chưa đăng nhập)

getDbName: Trả về Database Name

Setter

setApp(appId): Khởi tạo app Realm

Hàm

loginWithEmail(email,password): Đăng nhập bằng Email

let result = await sAuth.loginWithEmail(email,password);
console.log(result.user)

loginWithApiKey(apiKey): Đăng nhập bằng apiKey

let result = await sAuth.loginWithApiKey(apiKey);
console.log(result.user)

loginGuest(): Đăng nhập bằng Guest

let result = await sAuth.loginGuest();
console.log(result.user)

logout(): Đăng xuất

await sAuth.logout();

REALM-AUTH-EXT

Cài đặt:

$ npm install --save realm-auth-ext

Cài đặt Dependencies:

$ npm install --save lodash moment realm-web

Hướng dẫn sử dụng:

Bước 1: Khởi tạo và gọi Services Auth

import {serviceAuth} from 'realm-auth-ext';
let RealmId = "example";
let dbName = "database";
let sAuth = new serviceAuth(RealmId,dbName);

Bước 2: Đăng nhập để có thể sử dụng các Services khác:

let result = await sAuth.loginWithEmail({
    email: "email",
    password: "pass",
  })
  // Return
  // TRUE: trả về {success:true, user}
  // FALSE: trả về {success:false. error}

Bước 3: Sử dụng các services khác

import {serviceUser} from 'realm-auth-ext';
let sUser = new serviceUser(sAuth)

Các Services hiện tại

serviceAuth: Dùng để đăng nhập và đăng ký tài khoản.

serviceUser: Dùng để tạo CustomData User và Quản lý thông tin User trên Database (collection mặc định: "users").

serviceRole: Quản lý Roles và Actions trên Database (chưa hoàn thành)

Các thuộc tính, hàm trong serviceAuth

Getter

getAppId: Trả về mã RealmId

getApp: Trả về Realm instance

getCurrentUser: Trả về User hiện tại đang đăng nhập ( Null nếu chưa đăng nhập)

getMongoDb: Trả về MongoDB ( null nếu chưa đăng nhập)

getDbName: Trả về Database Name

Setter

setApp(appId): Khởi tạo app Realm

Hàm

loginWithEmail(email,password): Đăng nhập bằng Email

let result = await sAuth.loginWithEmail(email,password);
console.log(result.user)

loginWithApiKey(apiKey): Đăng nhập bằng apiKey

let result = await sAuth.loginWithApiKey(apiKey);
console.log(result.user)

loginGuest(): Đăng nhập bằng Guest

let result = await sAuth.loginGuest();
console.log(result.user)

logout(): Đăng xuất

await sAuth.logout();

createUser(payload): Tạo tài khoản Realm (payload: {email, password})

Sau khi đăng ký xong sẽ có gửi Email xác nhận

let payload = {
 email:"[email protected]",
 password:"Abcdef1234!"
 // Password ít nhất 8 ký tư, có chữ hoa, chữ thường và 1 kí tư đặc biệt
}
await sAuth.createUser(payload);

sendEmailConfirm(email): gửi Email xác nhận cho User

Sử dụng trong trường hợp gửi lại email xác nhận


await sAuth.sendEmailConfirm(email);

confirmUser(token,tokenId): Xác nhận User token,tokenId lấy trong req.query của link xác nhận

Sử dụng trong trường hợp xác nhận User


await sAuth.confirmUser(token,tokenId);

Các thuộc tính, hàm trong serviceUser

Getter

isAdmin: Kiểm tra phải Admin hay không

isLogin: Kiểm tra xem User có đang Login không

getName: Lấy Name của Service

Hàm

createUser(payload): Tạo User trên Database để làm customData cho Realm

Payload : Object { name:"", email:"", phone:"", }

 // Password ít nhất 8 ký tư, có chữ hoa, chữ thường và 1 kí tư đặc biệt
let payload = {
 email:"",
 password:"Abcdef1234!",
 name:"abc"
}
let result = sUser.createUser(payload);

getAllUsers(): Lấy danh sách Users

let result = sUser.getAllUsers();

getUserById(id): Lấy User bằng Id

let result = sUser.getUserById();

getUserByUid(uid): Lấy User bằng Id của Realm

let result = sUser.getUserByUid();

getUsers(filter): Lấy danh sách bằng Bộ lọc (xem thêm mongodb.find(filter))

let filter = {
    name: "CC"
}
let result = sUser.getUsers(filter);

updateUser(id,payload): Cập nhật User theo ID, với dữ liệu trong payload

let id = "1234"
let payload = {
    name: "CC"
}
let result = sUser.updateUser(id,payload);

deleteUser(id): Xóa User theo ID

let id = "1234"

let result = sUser.deleteUser(id);