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

nttdatacore

v2.2.0

Published

Ev Core reune un conjunto de soluciones o piezas de software que no estan amarradas a nuingun FrameWork de desarrollo, y que tienen como objetivo brindar a los desarrolladores soluciones que se adapten o acomplen a los ambientes donde se encuentren desarr

Downloads

2

Readme

Ev Core

Ev Core reune un conjunto de soluciones o piezas de software que no estan amarradas a nuingun FrameWork de desarrollo, y que tienen como objetivo brindar a los desarrolladores soluciones que se adapten o acomplen a los ambientes donde se encuentren desarrollando sin mayor esfuerzo. Angular.

Enlaces de Interes

¿Como Contribuir?

Pre Requisitos

  • Verifique que tenga NodeJs intslado, pfreferiblemente la version 8.x o 10.x

     $ node -v
  • Verifique que tiene instalado un gestor de paquete npm

     $ npm -v
  • Configure el archivo .npmrc de npm

    Se debe agregar la configuracion del nexus-npm de everis, en el archivo de configuracion de npm .npmrc, el contenido del archivo debe verse de la siguiente forma

    Ejemplo:

     registry=https://registry.npmjs.org
         
     @everis:registry=https://steps.everis.com/nexus/repository/EVEFRONT.npm.hosted/
     //https://steps.everis.com/nexus/repository/EVEFRONT.npm.hosted/
     always-auth=true
     [email protected]
     _auth=token_de_autenticacion
  • Nota:

    El campo email deben usar el correo corto de everis. Para generar el token de autenticacion es necesario componer un string con el siguiente formato "user:password" y convertirlo a base64.

    • El campo "user" corresponde a su usuario corto de Everis, luego para convertir la cadena en base64, pueden usar este link: base_64_encode

    • Como ejemplo al usar "user:password" tenemos como resultado este token "dXNlcjpwYXNzd29yZA=="

Instalación

  • Descargue la dependencia en su proyecto TypeScript o Javascript

    npm install --save-dev @everis/core

Como Usar

Importa el core en cualquiera de tus proyecto y realiza una extension de cualquiera de sus funcionalidades

Ejemplo:

import { Logger, LoggerBase, LoggerLevels } from '@everis/core';

export class EvLogger extends Logger {
  constructor(_config: LoggerBase) {
    super(_config);
  }
}

const _config = { level: LoggerLevels.LOG, serverLogLevel: LoggerLevels.OFF };
let service: EvLogger;

service = new EvLogger(_config);
service.log('message', []);

Corriendo Pruebas

Para correr pruedas automatizadas ejecuta el siguiente comando

$ npm run test 

Corriendo Linter

Para correr pruedas automatizadas ejecuta el siguiente comando

$ npm run lint

Hecho con

Listado de Componentes

Versionado

GIT

Licencia

EVERIS@copyright