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

@tandem6/dddgen

v0.1.4

Published

Generated using [dddgen-cli](https://www.npmjs.com/package/@tandem6/dddgen):

Downloads

14

Readme

DDD Generator

Generated using dddgen-cli:

$ npm i -g @tandem6/dddgen
$ dddgen -p com.tandem6.allsport -a team,player,league

Installation

Using npm:

$ npm i -g npm
$ npm i -g @tandem6/dddgen

Note: add --save if you are using npm < 5.0.0

Usage

You must run this command in the src upper folder.

dddgen --help
Usage: index [options]

Options:
  -V, --version                    output the version number
  -p, --package <package>          package name
  -a, --aggregate <aggregates...>  aggregate name comma separated list
  -h, --help                       display help for command

Example

Spring Boot Project Download

# curl -s https://start.spring.io/starter.zip -o coffeeshop.zip \
-d type=gradle-project \
-d language=java \
-d bootVersion=2.7.12.RELEASE \
-d baseDir=coffeeshop \
-d groupId=com.tandem6 \
-d artifactId=coffeeshop \
-d name=coffeeshop \
-d description=Demo%20project%20for%20Spring%20Boot \
-d packageName=com.tandem6.coffeeshop \
-d packaging=jar \
-d javaVersion=11 \
-d dependencies=web,data-jpa,h2,actuator,lombok,validation
# unzip coffeeshop

Code Generation

# cd coffeeshop
# dddgen -p com.tandem6.coffeeshop -a product,coupon,payment

Why DDDGen?

DDD is very helpful in developing MSA. But studying DDD takes a lot of time and there is no set style. Therefore, it can give a lot of difficulty when many people create a project together. DDDGen automatically creates a package with its know-how to solve these problems to some extent.

  • Clean Architecture
  • DDD Tactical Pattern
  • Base CRUD Operation
  • Restful API Document Automation(Swagger)

Release Note

  • 0.1.4
    • bug fix when add dependency
  • 0.1.3
    • change spring-boot version
  • 0.1.2
    • add Dockerfile
    • Adding dependencies automatically
  • 0.1.1
    • Document Update
  • 0.1.0
    • Swagger UI Document configure add
  • 0.0.11
    • Return 201 when resource created
    • MockMvc, mockito apply
  • 0.0.9
    • JSR-380 apply
    • controller advice apply
  • 0.0.8
    • Spring Project Creation using CURL
    • update README.md
  • 0.0.6
    • Error sentence change to english
    • required option apply
    • README.md modified
  • 0.0.5
    • .npmignore add
  • 0.0.4
    • warning fix
    • typo fix
    • Promise reject method add
  • 0.0.3
    • Readme.md modified
  • 0.0.2
    • Readme.md modified
  • 0.0.1
    • cli option add(using commander)
    • git repository add