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-azure-spring-apps

v1.0.17

Published

Azure Spring Apps Application

Downloads

66

Readme


About

JHipster Azure Spring Apps can quickly create applications that can be deployed on Azure Spring Apps with easy steps.

Documentation about Azure Spring Apps is available here


Prerequisites

The following prerequisites are required to use this application. Please ensure that you have them all installed locally.

🚀 How to generate a project

CLI

  1. Install the package with npm install -g generator-jhipster-azure-spring-apps
  2. Create and navigate to a directory
  3. Generate the application with jhipster-azure-spring-apps createtodoapp

JHipster Online

Go to JHipster Online and generate your application.

🚁 How to run locally

To run the project on the localhost:

  • mvn clean package -DskipTests
  • java -jar web/target/${artifact-name}-web-0.0.1-SNAPSHOT.jar

You can also use Maven Wrapper with:

  • chmod +x mvnw
  • mvnw clean package -DskipTests
  • ./mvnw spring-boot:run -f web/pom.xml

To test the local project, access port 8080 (by default) or the one that you specified:

  • http://localhost:8080/

🎉 How to deploy on Azure

  1. Log in to azd. Only required once per-install. azd auth login
  2. Navigate to the generated project directory and run azd up

After the command is executed, you can see the following log signs that the deployment was successful.

SUCCESS: Your application was provisioned and deployed to Azure Spring Apps in <deployment-time>.
You can view the resources created under the resource group <your-resource-group> in Azure Portal:
https://portal.azure.come/#@/resource/subscriptions/<subscription-id>/resourceGroups/<your-resource-group>/overview

The output Application url is the endpoint to access the todo application.

❤️ Next Steps

  • Try Azure for free, you can start with $200 Azure credit.

  • To help you get started, Azure Spring Apps have monthly FREE grants on all plans – 50 vCPU Hours and 100 memory GB Hours per plan.

  • To learn more about this project, check here.

  • At this point, you have a complete application deployed on Azure, to delete all the Azure resources created with this template: azd down