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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ma_tkuchne/sc5-utilities

v0.0.19

Published

Komponenty i serwisy współdzielone między mikrousługami

Downloads

6

Readme

Sc5User

Wymagania

Instalacja

Pobranie repozytorium:

git clone [email protected]:amba_rnd/sc5-user-front.git
cd sc5-user-front

Instalacja zależności:

npm install

Zmienne środowiskowe (konfiguracyjne)

Znajdują się w katalogu ./src/environments

W katalogu powinny się znajdować dwa pliki:

  • Zmienne dla wersji DEV: environment.ts
  • Zmienne dla wersji PROD: environment.prod.ts

Przykładowa konfiguracja dla DEV:

export const environment = {
  production: false,
  apiGraphQL: 'http://develop.tkuchne.starcommerce.io/user',
  passwordMaxAge: 90 * 24 * 60 * 60, // 90 days
  tokenKeyName: 'x-jwt-token',
  identityKeyName: 'sc5-user-identity'
};

Przykładowa konfiguracja dla PROD:

export const environment = {
  production: true,
  apiGraphQL: 'http://develop.tkuchne.starcommerce.io/user',
  passwordMaxAge: 7776000,
  tokenKeyName: 'x-jwt-token',
  identityKeyName: 'sc5-user-identity'
};

Generowanie pliku konfiguracyjnego

Istnieje możliwośc automatycznego generowania pliku konfiguracyjnego.

node generate-env.js

Polecenie wygenruje plik environment.ts z domyślnymi wartościami. Jeśli chcemy nadpisać jedną z wartości wystarczy podać odpowiedni parametr. Polecenie z wszystkimi dostepnymi parametrami:

node generate-env.js env=prod prod=true api=http://develop.tkuchne.starcommerce.io/user passAge=7776000 tokenKeyName=x-jwt-token identityKeyName=sc5-user-identity

Praca z projektem

Projekt budowany jest z wykorzystaniem Angular CLI. Nie polecam instalować tego narzędzia globalnie, ponieważ w poszczególnych projektach może być różna wersja CLI przez co mogą pojawić się problemy z budowaniem projektu.

Lokalnie

Uruchomienie projektu: node_modules/.bin/ng serve -o Odpalenie testów jednostkowych: node_modules/.bin/ng test Odpalenie testów e2e: node_modules/.bin/ng e2e

Wersja BETA

Aby odpalić wersję beta musi istnieć plik ./src/environments/environment.ts !

Budowa projektu: ./node_modules/.bin/ng build --prod --env dev --base-href /user/ Odpalenie testów jednostkowych: node_modules/.bin/ng test --single-run Odpalenie testów e2e: node_modules/.bin/ng e2e

Wersja PROD

Aby odpalić wersję produkcyjną musi istnieć plik ./src/environments/environment.prod.ts !

Budowa projektu: node_modules/.bin/ng build --prod --base-href /user/ Odpalenie testów jednostkowych: node_modules/.bin/ng test --single-run Odpalenie testów e2e: node_modules/.bin/ng e2e