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 🙏

© 2025 – Pkg Stats / Ryan Hefner

spa-auth-components

v0.3.29

Published

Installing with npm is recommended and it works seamlessly with webpack. ```sh npm i spa-auth-components ``` To external usage of this library we should modify webpack config firstly: ```javascript externals: { spa_auth: 'SpaAuthComponents' } `

Readme

Spa auth components

Installation

Installing with npm is recommended and it works seamlessly with webpack.

npm i spa-auth-components

To external usage of this library we should modify webpack config firstly:

externals: {
  spa_auth: 'SpaAuthComponents'
}

Next, we should add library source to your project page:

<!doctype html>
<html lang="en">
<head>
  ...
  <link href="{{ config("app.mixBaseAssetUrl") . mix('css/app.css') }}" type="text/css" rel="stylesheet" />
  <link href="https://unpkg.com/spa-auth-components/dist/SpaAuthComponents.css" type="text/css" rel="stylesheet" />
</head>
<body>
...
<script src="{{ config("app.mixBaseAssetUrl") . mix('js/vendor.js') }}"></script>
<script src="{{ config("app.mixBaseAssetUrl") . mix('js/manifest.js') }}"></script>
<script src="https://unpkg.com/spa-auth-components/dist/SpaAuthComponents.umd.min.js"></script>
<script src="{{ config("app.mixBaseAssetUrl") . mix('js/app.js') }}"></script>
</body>
</html>

How to use

Auth library can be inited by code presented below:

import Vue from 'vue';
import TripUpAuth from 'spa_auth';
import store from '@/store';
import router from '@/router';
import i18n from '@/lang';
Vue.use(TripUpAuth, {
  inject: {
    store: store, // required
    router: router, // required
    i18n: i18n,
    userStatusChanged: function(user) {
      // any actions
    },
  },
  pages: {
    login: {
      title: 'Sign In',
    },
    resetPassword: {
      title: 'Reset password',
    },
  },
  baseApiUrl: window.Ziggy.baseUrl + 'inventory',
});

You can change any field of default component config:

import { FakeAuthRepository } from '@/services/fake-auth-repository'
import { FakeUserRepository } from '@/services/fake-user-repository'

export default {
  inject: {
    store: null,
    router: null,
    authApi: new FakeAuthRepository(),
    userApi: new FakeUserRepository(),
    baseApiUrl: null
  },
  pages: {
    login: {
      title: 'Login Title',
      name: 'login',
      path: '/login'
    },
    resetPassword: {
      title: 'Reset password',
      path: '/reset',
      name: 'reset.password'
    },
    setPassword: {
      title: 'Set password',
      name: 'set.password',
      path: '/password/set'
    }
  }
}

#Backend configuration

First of all we should add TripUpAuthService provider to config/app.php file:

  'providers' => [
        ...
        \Tripup\Auth\TripupServiceProvider::class,
        ...
    ],

Next we should add SsoCookie middleware to App/Http/Kernal file:


use Tripup\Auth\Middlewares\SsoCookie;

class Kernel extends HttpKernel
{
    ...
    protected $middleware = [
        ...
        SsoCookie::class,
    ];
    ...
}

After we should change config/auth.php configuiration:

[
...
    'defaults' => [
        'guard' => 'chain',
        'passwords' => 'oauth2',
    ],
    'guards' => [
        "chain"=>[
            'driver' => 'chain_guard',
            'chain'=>['web', 'sso'],
        ],
        'web' => [
            'driver' => 'session',
            'provider' => 'oauth2',
        ],
        'api' => [
            'driver' => 'tripup_api_guard',
            'provider' => 'users',
            'hash' => false,
        ],
        'sso' => [
            'driver' => 'tripup_guard'
        ],
    ],

    'providers' => [
        'oauth2'=>[
            'driver'=>'oauth2'
        ]
    ],
...
]

Next we should except TRIPUP_SSO and isLogged cookies from encription:

namespace App\Http\Middleware;

use Illuminate\Cookie\Middleware\EncryptCookies as Middleware;

class EncryptCookies extends Middleware
{
    /**
     * The names of the cookies that should not be encrypted.
     *
     * @var array
     */
    protected $except = [
        "TRIPUP_SSO",
        "isLogged"
    ];
}