1.7.0 • Published 1 month ago

dryerjs v1.7.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

DryerJS, leveraging the power of NestJS and Mongoose, automates the creation of CRUD GraphQL APIs from model declarations. It supports complex model relationships and offers extensive customization options, greatly reducing repetitive coding and enhancing development efficiency.

codecov Build Status Release Status npm Discord Paypal

Documentation

Checkout the documentation at dryerjs.com for more information.

Getting Started

To get started with DryerJS, follow these steps:

  1. Prepare:

    # init new nest project
    npm i -g @nestjs/cli && nest new my-project && cd my-project
    # install standard dependencies
    npm i @nestjs/graphql @nestjs/apollo @nestjs/mongoose
    # install peer dependencies
    npm i dataloader class-transformer class-validator
    # remove unrelated files
    npm run env -- rimraf src/app.(service|controller)*
  2. Install DryerJS:

    npm i dryerjs
  3. Declare your first model on src/user.ts:

    import { Definition, Property, Id, Skip, ObjectId } from 'dryerjs';
    
    @Definition()
    export class User {
      @Id()
      id: ObjectId;
    
      @Property()
      email: string;
    
      @Property({ update: Skip, output: Skip })
      password: string;
    
      @Property()
      name: string;
    }
  4. Import your model and DryerJSModule in AppModule with other modules inside app.module.ts:

    import { Module } from '@nestjs/common';
    import { GraphQLModule } from '@nestjs/graphql';
    import { ApolloDriver, ApolloDriverConfig } from '@nestjs/apollo';
    import { MongooseModule } from '@nestjs/mongoose';
    import { DryerModule } from 'dryerjs';
    
    import { User } from './user';
    
    @Module({
      imports: [
        GraphQLModule.forRoot<ApolloDriverConfig>({
          driver: ApolloDriver,
          autoSchemaFile: true,
          playground: true,
        }),
        MongooseModule.forRoot('mongodb://127.0.0.1:27017/test'),
        DryerModule.register({ definitions: [User] }),
      ],
    })
    export class AppModule {}
  5. Start server

    npm run start:dev
  6. Open browser and go to http://localhost:3000/graphql to see the GraphQL playground.

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

License

This project is licensed under the MIT License - see the LICENSE file for details.

1.7.0

1 month ago

1.6.1

2 months ago

1.6.0

2 months ago

1.5.6

2 months ago

1.5.5

3 months ago

1.5.4

3 months ago

1.5.3

3 months ago

1.5.2

4 months ago

1.5.1

4 months ago

1.5.0

4 months ago

1.4.0

4 months ago

1.3.1

4 months ago

1.3.0

4 months ago

1.2.0

4 months ago

1.2.3

4 months ago

1.2.2

4 months ago

1.2.1

4 months ago

1.1.4

5 months ago

1.1.3

5 months ago

1.1.1

6 months ago

1.0.2

6 months ago

1.1.0

6 months ago

1.0.1

6 months ago

1.1.2

5 months ago

0.11.0

6 months ago

0.12.0

6 months ago

0.13.0

6 months ago

0.13.1

6 months ago

0.13.2

6 months ago

0.10.0

6 months ago

0.9.0

6 months ago

0.8.0

6 months ago

0.7.0

6 months ago

0.6.1

7 months ago

0.6.0

7 months ago

0.5.0

7 months ago

0.4.0

7 months ago

0.3.0

7 months ago

0.2.0

7 months ago

0.1.2

7 months ago

0.1.1

7 months ago

0.1.0

7 months ago

1.0.0

7 months ago

0.0.1

7 months ago