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

ep-node-lib

v1.0.0

Published

| Componente | Versione | Descrizione | App di Test | Frontend | Zero Conf | Referente | Dipende da | |-------------------|------------------|-----------------------------------------|-------------|---

Downloads

2

Readme

Lista componenti (Aggiornata al 24 Marzo 2021)

| Componente | Versione | Descrizione | App di Test | Frontend | Zero Conf | Referente | Dipende da | |-------------------|------------------|-----------------------------------------|-------------|---------------------|-----------|-----------|------------| | node-fs-store | 1.0.12 (Stabile) | File System Store | | | | FVilli | | node-arango-store | 1.0.0 | Store persistito in arango db | | | | DMignini || | node-socketio | 1.0.19 (Stabile) | Semplificazione Socketio | Sì | ngx-socketio|Sì|FVilli|
| node-p2p | 1.0.32 (Stabile) | Semplificazione Peer to Peer | Sì | ngx-p2p | Sì | FVilli | | node-mqtt | 1.0.5 (Stabile) | Semplificazione Mqtt | | ngx-mqtt | Sì | FVilli | | node-scheduler | 1.0.2 (Stabile) | Schedulazione | | | | DMignini | | node-queue | 1.0.2 (Stabile) | Implementazione Coda | | | | FVilli | node-fs-store | | node-mailer | 1.0.0 (Stabile) | Semplificazione invio email | Sì | | | FVilli | | node-xls-parser | 1.0.0 (Non Stabile) | Parsing XLS e CSV | Sì | | | FVilli | | node-xls-creator | 1.0.1 (Stabile) | Create XLS file | Sì | | | FVilli | | node-language | 1.0.0 (stabile) | tiny wrapper di NLP.js | No (Ava tests) | | Sì | FVilli | pg-ingestor | 2.2.4 (stabile) | crea,importa,modifica dati in postgres | | | Sì | FVilli

EP-NODE-LIB

è una libreria di moduli node.

Come faccio a modificare o aggiungere pacchetti a questa libreria ?

Configurare l'ambiente di lavoro

Ogni modulo è contenuto nella propria cartella, ed avrà il proprio package.json. Installare le dipendenze dei vari moduli con npm i nomepacchetto a livello di progetto (sulla root del progetto) e referenziare i pacchetti come peerDependencies nel package.json del modulo che intendiamo sviluppare.

Configurare npmrc

è il file di configurazione di npm e si trova di solito nella home dell'utente - %userprofile% su windows. col comando npm config ls potrete scoprire dove è il vostro file .npmrc, e con npm config ls -l avrete una lista di tutte le configurazioni di npm.

Per poter usare il repository, aggiungere al file le seguenti righe:

@ep-framework:registry=https://gitlab.com/api/v4/packages/npm/

per poter scaricare i pacchetti dal repository aggiungere:

//gitlab.com/api/v4/packages/npm/:_authToken=5M2XXh1XY7HefdQPHdKV

infine per poter pubblicare i pacchetti nel repository aggiungere:

//gitlab.com/api/v4/projects/21569962/packages/npm/:_authToken=5M2XXh1XY7HefdQPHdKV

Se non siete in possesso di un token per aggiungere/scaricare pacchetti dovrete richiederne uno.

Configurare il package.json e il tsconfig.json

partire dal seguente modello:

package.json

{
  "name": "@ep-framework/node-socket.io",
  "version": "1.0.4",
  "main": "./build/index.js",
  "types": "./build/index.d.ts",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "prestart": "tsc",
    "start": "node ./build/index.js",
    "prepublish": "tsc"
  },
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "@types/cors": "^2.8.7",
    "@types/express": "^4.17.8",
    "@types/node": "^14.11.2",
    "@types/socket.io": "^2.1.11",
    "typescript": "^4.0.3"
  },
  "peerDependencies": {
    "chalk": "^4.1.0",
    "cors": "^2.8.5",
    "delay": "^4.4.0",
    "express": "^4.17.1",
    "guid-typescript": "^1.0.9",
    "rxjs": "^6.6.3",
    "socket.io": "^2.3.0"
  },
  "publishConfig": {
    "@ep-framework:registry": "https://gitlab.com/api/v4/projects/21569962/packages/npm/"
  },
  "description": ""
}

tsconfig.json

{
    "compilerOptions": {
        "target": "es2019",
        "module": "commonjs",
        "moduleResolution": "node",
        "allowJs": false,
        "declaration": true,
        "sourceMap": false,
        "outDir": "./build",
        "noImplicitAny": true,
        "experimentalDecorators": true,
        "emitDecoratorMetadata": true,
        "lib": [
            "es2020"
        ]
    },
    "compileOnSave": true,
    "include": [
        "./src/**/*"
    ]
}

I nomi dei pacchetti devono cominciare con node, trattandosi di moduli node. Referenziare nel pacchetto le dipendenze di sviluppo e le peerDependencies. se lo script è molto complesso aggiustare il file package.json e ts.lib di conseguenza, altrimenti si possono usare quelli d'esempio, modificando opportunamente nomi e dipendenze. L'ultima sezione del package.json serve per pubblicare il pacchetto sul progetto ep-node-lib (21569962)

Pubblicare un pacchetto

una volta che tutto l'ambiente è configurato a dovere, basterà lanciare il comando npm publish nella cartella del modulo che si vuole pubblicare.

Come faccio ad installare/utilizzare uno di questi pacchetti ?

consulta la sezione Configurare npmrc - quando npm è correttamente configurato basterà eseguire il seguente comando per instalalre i pacchetti:

npm i @ep-framework/nomepachetto

lista pacchetti (aggiornata al 27/10/2020)

1. socketio-svr
> npm i @ep-framework/socketio-svr
2. p2p
> npm i @ep-framework/p2p

XLS-PARSER

Ingestor options

ParserActivityOptions = {
  id?: number; // for readability of sheet models
  xlsSourceName?: string;
  modelFilePath?: string; // path for model; default is /chache
  createSchema?: boolean; // not implemented yet
  onlySchema?: boolean; // not implemented yet
  sheetIgnore?: string[]; // sheet to be ignored
  sheetDetail?: { [sheetName: string]: SheetOption }; // options for sheet or each sheet 
  onlyDetailedSheets?: boolean; // parse only sheets which is present on sheetDetail
};
SheetOption = {
  uniqueColumns?: boolean; // if we have two or more same columns, only one column will be parsed
  headerRow?: number; // on which row header is; default is 0
  rowStart?: number; // from which row data begin (example: you can skip first 10 rows, just make count headerRow + 10) default is 1
  collStart?: number; // from which coll to start
  rowEnd?: number; // on which row to stop parsing
  collEnd?: number; // on which coll to end parsing
  maxValueFreq?: number; // not implemented yet
  columnType?: { [id: string]: string }; // ex: string, number...
  keyFieldHash?: boolean; // in the end of parsing, it will add to final result a hash code of e each row to row
  validationFields?: string[]; // if value of any row of this column is empty the row will be skiped 
  removeSpaceFromHeaders?: boolean;
  fieldNameWithColumnNumber?: boolean;
  parseOnlyColumns?: Array<string>; // permit to choose columns which will be parsed
};
ParserActivityResult = { 
  error: any; 
  session: string; 
  sheetParsed: Array<SheetParsed>; // result of parsing
};
SheetParsed = {
  name: string;
  fields: Array<SheetField>; // is a result of headers parsing
  ignoredFields: Array<SheetField>;
  data?: Array<Array<any>>; // is a result of rows parsing
  file: FileInfo;
  xlsxNpmLibVersion: string;
  model: Array<SheetField>; // is a result of headers parsing, and is used to create model
};
SheetField = {
  name: string;
  column: number; // defacto index of column in sheet
  idx: number; // index of column in result
  dataType: string; // ex: string, number...
  format?: { [id: string]: number };
  symbol: string;
  cellHeader: string; // position of cell in sheet. Ex: D21
  analysis?: CellAnalysis;
};
 CellAnalysis = {
  samples: number;
  typeFrequencies: { [id: string]: number };
  valueFrequencies: { [id: string]: number }; // how often do we see value
};

Pubblicazione dei pacchetti nel Package Registry

npm config set '//gitlab.com/api/v4/projects/21569962/packages/npm/:_authToken' "HLxMscvzzysBELW6aLpQ"

perchè 21569962 è l'id di questo repository (vedere package.json)

invece HLxMscvzzysBELW6aLpQ è un token creato a livello di gruppo che permette la pubblicazione nel Package Registry