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

generator-jhipster-ember

v1.0.0-beta.8

Published

Java + Spring + JPA + EmberJS complete dev stack

Downloads

18

Readme

#Jhipster Ember Generator

Yeoman generator base on JHipster which describes itself as

"Hipster stack for Java developers. Yeoman + Maven + Spring + AngularJS in one handy generator."

This fork brings the following changes or differences:

  • Gradle instead of Maven as build system
  • EmberJS instead of AngularJS
  • MongoDB as an optional data storage
  • Redis as the only Cache option
  • PostgreSQL as the only SQL storage option
  • Java 8 ready (more like Java 8 only)
  • Security via OAuth2 using Spring Security
  • Stormpath as an optional authorization service
  • Heroku deployment ready
  • Docker ready

#Installation

Install Yeoman:

> npm install -g yo

Install Ember CLI:

> npm install -g ember-cli

Install Bower:

> npm install -g bower

Install JHipster Ember:

> npm install -g generator-jhipster-ember

#Requirements

  • PostgreSQL or MongoDB (optional if using docker)
  • Java 8
  • Docker (optional)
  • Fig (optional)
  • Direnv (optional but usefull if using Docker)
  • Boot2docker (is using Docker on OS X)

If you want to use Stormpath

  • A free account in Stormpath place the apiKey.properties file in ~/.config/stormpath/

#Usage

> mkdir my_proyect
> cd my_proyect
> yo jhipster-ember

To run the generated application

Storage service can be started using Docker and Fig

For example:

> fig up -d postgresql

Then start the app:

> ./gradlew bootRun

On a different terminal session run the UI with livereload and all the good stuff (provided by ember-cli)

> ./gradlew emberServer

Yes a full gradle workflow!!

Goto http://localhost:4200/ login with [email protected]/123Queso@

If you want to run the app fully dockerized just do > fig up

#TODO

  • Change the name (maybe)

#Contributors

As for this fork only, not the original project

  • Yëco

#Thanks

I like to thank Julien Dubois and all the collaborators of the original JHipster generator.