当前位置: 首页 > 软件库 > Web应用开发 > Web框架 >

generator-jhipster-primeng

Generate PrimeNG components and their features
授权协议 MIT License
开发语言 JavaScript
所属分类 Web应用开发、 Web框架
软件类型 开源软件
地区 不详
投 递 者 公孙琛
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

generator-jhipster-primeng

Click if you like the project. Pull Requests are highly appreciated. Follow me @SudheerJonna for technical updates.

JHipster module, Generate PrimeNG application with 90+ components and their features

Introduction

This is a JHipster module, that is meant to be used in a JHipster application.

The minimum required version of JHipster is >=6.8.0

This module is used to generate components, using PrimeNG.

Prerequisites

As this is a JHipster module, we expect you have JHipster and its related tools already installed:

Installation

With YARN

First,we need to install yo as below,

yarn global add yo

To install this module:

yarn global add generator-jhipster-primeng

To update this module:

yarn global upgrade generator-jhipster-primeng

With NPM

To install this module:

npm install -g generator-jhipster-primeng

To update this module:

npm update -g generator-jhipster-primeng

Using Docker

Download the Dockerfile:

mkdir docker
cd docker
wget https://github.com/sudheerj/generator-jhipster-primeng/raw/master/docker/Dockerfile

Build the Docker images:

docker build -t jhipster-generator-primeng:latest .

Make a folder where you want to generate the Service:

mkdir service
cd service

Run the generator from image to generate service:

docker run -it --rm -v $PWD:/home/jhipster/app jhipster-generator-primeng

Run and attach interactive shell to the generator docker container to work from inside the running container:

docker run -it --rm -v $PWD:/home/jhipster/app jhipster-generator-primeng /bin/bash

Getting Started

  1. Run JHipster-PrimeNG module using yo jhipster-primeng command
  2. Select your favourite theme
  1. Either select component group or individual components
  1. Select your component and navigate to required features
  1. Run client and server side environments

    Client: npm start

    Server: ./mvnw

  2. Open application in the browser using http://localhost:9000

What next?

Please check the road map list https://github.com/sudheerj/generator-jhipster-primeng/wiki/Roadmap. If you need a new feature please raise a github request for the discussion.

Blog

http://sudheerjonna.com/blog/2017/10/09/jhipster-meets-primeng-or-primeng-meets-jhipster/

Usage

In your JHipster project, launch yo jhipster-primeng and confirm.

 相关资料
  • Greetings, Java Hipster! Full documentation and information is available on our website at https://www.jhipster.tech/ Please read our guidelines before submitting an issue. If your issue is a bug, ple

  • 我现在真的需要在Windows上安装Python来使用jhipster??? 一个月前,Python没有任何问题。

  • JHipster 是一个 Yeoman 的生成器, 用来创建基于 Maven + Spring + AngularJS 的项目,提供完全热加载的 Java 和 JavaScript 代码。 我们的目的是生成一个完整和现代的 Web app。 服务器端技术堆栈: Spring Boot for easy application configuration Maven or Gradle config

  • Greetings, Java Hipster! This is the JHipster Angular 2+ utilities library This library is used by the code generated by the generator-jhipster: https://github.com/jhipster/generator-jhipster/. When r

  • jhipsterSampleApplication This application was generated using JHipster 7.3.0, you can find documentation and help at https://www.jhipster.tech/documentation-archive/v7.3.0. Development Before you can

  • 常规函数只会返回一个单一值(或者不返回任何值)。 而 Generator 可以按需一个接一个地返回(“yield”)多个值。它们可与 iterable 完美配合使用,从而可以轻松地创建数据流。 Generator 函数 要创建一个 generator,我们需要一个特殊的语法结构:function*,即所谓的 “generator function”。 它看起来像这样: function* gene