This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

@odata/server
TypeScript icon, indicating that this package has built-in type declarations

0.2.48 • Public • Published

OData(V4) Server

npm (scoped) npm (scoped) npm (scoped) npm (scoped)

Unit Test Status MySQL Integration Status PostgreSQL Integration Status Codecov

Security Rating Reliability Rating Technical Debt

NodeJS OData(V4) Server Implementation.

This project is under heavy development, if you are looking forward an OData Framework for production usage, please try the SAP CAP Framework

Just check the demo project for features preview.

Features

  • OASIS Standard OData Version 4.0 server
  • usable as a standalone server, or as an Express router
  • expose service document and service metadata - $metadata
  • setup metadata using decorators or @odata/metadata
  • supported data types are Edm primitives, complex types, navigation properties
  • support create, read, update, and delete the EntitySets,
  • support action imports, function imports, bounded actions and bounded functions on EntitySets
  • support for full OData query language using @odata/parser
    • filtering entities - $filter
    • sorting - $orderby
    • paging - $skip and $top
    • projection of entities - $select
    • expanding entities - $expand
    • count records - $count
  • support async controller functions using Promise, async/await
  • support OData V4.01 JSON format $batch operation
  • support dependency inject
  • support deep insert

Concepts

Domain Model

Define domain model class, it will be transformed to database schema.

Action & Function

Define Action/Function on the Domain Models.

Using the actions implement the partially focused business logics, and use the functions implement complex queries.

Hook

Hook is general business logic for specify Domain Model, like beforeCreate/beforeUpdate, and it's mapped from OData/HTTP Method.

Define Hooks to implement the general business logics for entity.

Service

Using services in hook/action/function, keep the business consistence for single domain model.

Each model will have its own standard CRUD service which enhanced with hooks logic.

Transaction

Each TransactionContext will use single database transaction (connection).

CHANGELOG

LICENSE

Readme

Keywords

Package Sidebar

Install

npm i @odata/server

Weekly Downloads

62

Version

0.2.48

License

MIT

Unpacked Size

1.1 MB

Total Files

222

Last publish

Collaborators

  • suntao