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

ebook-unasus

v0.2.75

Published

UNASUS cli for book building

Downloads

66

Readme

ebook-unasus

UNASUS cli for e-book building

oclif

Installation

INSTALLATION
  For the first installation it is REQUIRED the installation of libcurl4-gnutls-dev:
    $ sudo apt-get install libcurl4-gnutls-dev

  And then install the package with the flags to allow global installation:
    $ sudo npm install -g ebook-unasus -unsafe-perm=true --allow-root

  To update the package you can simply run:
    $ sudo npm update -g ebook-unasus 

  

Usage

USAGE
  On the first use after installation set your GIT credentials: 
    $ ebook-unasus credentials --set

  $ ebook-unasus COMMAND

Commands

ebook-unasus create PROJECTNAME

Comando create para criação de projetos

USAGE
  $ ebook-unasus create PROJECTNAME

ARGUMENTS
  PROJECTNAME  Nome do projeto

OPTIONS
  -g, --git=git      Repositório git
  -n, --name=name    [default: Livro] Nome do livro
  -p, --pages=pages  [default: 1] Número de páginas

EXAMPLES
  $ ebook-unasus create NovoProjeto -n "Nome do livro" -p 10 -g [email protected]

See code: src/commands/create.js

ebook-unasus add TYPE

Comando Add para adicionar páginas, componentes e repositórios GIT.

USAGE
  $ ebook-unasus add TYPE

ARGUMENTS
  TYPE  (page|component|git) Tipo de comando add.

OPTIONS
  -n, --name=name    Nome do componente criado
  -p, --pages=pages  [default: 1] Numero de páginas adicionadas
  -u, --url=url      Url do repositório git que deve ser relacionado ao projeto

EXAMPLES
  $ ebook-unasus add page -p 20
  $ ebook-unasus add component -n NovoComponente 
  $ ebook-unasus add url [email protected]

See code: src/commands/add.js

ebook-unasus credentials

Comando Credentials para ver e sertar credenciais GIT

USAGE
  $ ebook-unasus credentials

OPTIONS
  -s, --set  Setar credenciais

See code: src/commands/credentials.js

ebook-unasus update [TYPE]

Comando Update para controle de versões

USAGE
  $ ebook-unasus update [TYPE]

ARGUMENTS
  TYPE  (core|components|check) Tipo de update.
       -                  Atualiza core e componentes do livro
      core                Atualiza o core do livro
      components          Atualiza os componentes do livro
      check               Checa se existem atualizações disopníveis


OPTIONS
  -l, --list=list         Lista de versões antigas salvas
  -v, --version=version   Flag usada para especificar versão à ser instalada

EXAMPLES
  $ ebook-unasus update                   Tenta atualizar core e componentes
  $ ebook-unasus update core              Tenta atualizar core
  $ ebook-unasus update core -v 0.4       Tenta atualizar core para a versão 0.4

See code: src/commands/update.js

ebook-unasus help [COMMAND]

display help for ebook-unasus

USAGE
  $ ebook-unasus help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help