1.1.32 • Published 2 years ago

entity-cli v1.1.32

Weekly downloads
205
License
ISC
Repository
github
Last release
2 years ago

Entity CLI

What's new ?

V 1.1.22 is here !!

  • typescript perser Implemented
  • Core improvment
  • Mongoose support improvment
    • Add timestamp at entity generation
    • fix property add issues interfaces

Features

  • support typeorm (ts), sequelize (ts) and mongoose (js, ts)
  • Generate entity
  • support OneToMany relation (typeorm, sequelize)
  • support OneToOne relation (typeorm)
  • support string, number, boolean type
  • additionally supports Buffer, ObjectId type for mongoose
  • support config file
  • mode module
  • you can specify the folder where are located your entities inside the module dir
  • autocomplete feature in your entities research
  • you can manage many entities by module
  • works properly with nest resource
  • make relations in mongoose
  • create interfaces for mongoose ts
  • snake case files supported
  • initialize empty files and generated nestJs crud entity file

How to install

npm i entity-cli or yarn add entity-cli

Add to scripts key to package.json

"scripts" {
    ...
    "entity-cli": "node ./node_modules/entity-cli/index.js"
}

Install the ORM

for configuration go to Configuration section

Sequelize

typeorm

Mongoose

Configuration

create an entity-cli.json file in your project root directory

put this content

{
  "src": "put_entities_directory",
  "orm": "type" //typeorm or mongoose or sequelize,
  "lang": "language" // js or ts
}

Module mode (recommended for nestJs users)

What's module mode ?

a module is a directory that encompasses the logics that revolve around a well-defined entity it permits to organize the application structure.

how to activate ?

add "mode": "module" to entity-cli.json

add "modulesDir": "path to module dir" to change the modules directory

when the module mode is activate, the src key in entity-cli.json represents the folder where are entities inside the module

{
  "mode": "module",
  "modulesDir": "path to module dir"
}

the default directory is : src/entities

default orm : typeorm

default language : ts

default modules directory : src/modules

1.1.32

2 years ago

1.1.31

3 years ago

1.1.29

3 years ago

1.1.30

3 years ago

1.1.28

3 years ago

1.1.27

3 years ago

1.1.26

3 years ago

1.1.23

3 years ago

1.1.25

3 years ago

1.1.24

3 years ago

1.1.19

3 years ago

1.1.18

3 years ago

1.1.17

3 years ago

1.1.22

3 years ago

1.1.21

3 years ago

1.1.20

3 years ago

1.1.16

3 years ago

1.1.15

3 years ago

1.1.14

3 years ago

1.1.13

3 years ago

1.1.12

3 years ago

1.1.11

3 years ago

1.1.10

3 years ago

1.1.9

3 years ago

1.1.8

3 years ago

1.1.7

3 years ago

1.1.6

3 years ago

1.1.5

3 years ago

1.1.4

3 years ago

1.1.3

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.14

4 years ago

1.0.13

4 years ago

1.0.12

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago