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

angularx-generator

v1.0.1

Published

generate template develop angular

Downloads

2

Readme

Angular Generator

Generador de templetas de html y typescript para Angular 4. Esta libreria genera archivos con codigo compatible para angular.

A diferencia de angular-cli ,esta libreria puede generar un Modulo con sus respectivas routas, Componentes , Servicio, todo ello enviandole un json de configuracion.

Installation

npm install -g angularx-generator

Modo de Uso

 -t, --type               Type of Template for generate
 -n, --name               Name of Template
 -f, --file               Generate files using a json
 -p, --path               Generate files with other path using a json
 -w, --withFolder         Generate files with Folder
 -h, --help               Output usage information
 
 
 angugen -t component -n dashboard

Este comando genera una carpeta con el nombre de dashboard-component el cual tendra 2 archivos

dashboard.component.html

dashboard.component.ts

 angugen -t service -n https

Este comando genera una carpeta con el nombre de https-service el cual tendra 1 archivo

https.service.ts

 angugen -t module -n dashboard

Este comando genera una carpeta con el nombre de dashboard-module el cual tendra 4 archivos

dashboard.component.html

dashboard.component.ts

dashboard.route.ts

dashboard.module.ts

-w Esta la opcion para crear la carpeta que contiene los archivos generados , si colocamos esta opcion en false entonces creara los archivos en el donde se ejecuto el comando.

Generar con un JSON de configuracion

 angugen -f structure.json -p /app/src

Genera una estructura de archivos tomando los datos de structure.json por defecto generara los archivos en el lugar donde se ejecuto el comando pero se puede pasar una nueva ruta utilizando la opcion -p pasandole la nueva ruta donde se generara los archivos.

structure.json

  [
    {
      "type":"component",
      "name":"profile",
      "withFolder":true
    },
    {
      "type":"module",
      "name":"dashboard",
      "treeFiles":[
        {
          "type":"component",
          "name":"users"
        },
        {
          "type":"component",
          "name":"login"
        },
        {
          "type":"service",
          "folderName":"services",
          "onlyFolder":true,
          "treeFiles":[
            {
              "type":"service",
              "name":"login",
              "withFolder":false
            },
            {
              "type":"service",
              "name":"auth",
              "withFolder":false
            }
          ]
        }
      ]
    }
  ]

Este ejemplo genera la siguiente estructura de archivos:

  • dashboard-component /
    • profile.component.html
    • profile.component.ts
  • dashboard-module /
    • users-component /

      • users.component.html
      • users.component.ts
    • login-component /

      • login.component.html
      • login.component.ts
    • services /

      • login.service.ts
      • auth.service.ts
    • dashboard.component.html

    • dashboard.component.ts

    • dashboard.route.ts

    • dashboard.module.ts