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

@nexys/digis-ddl

v1.1.0

Published

digis ddl

Downloads

11

Readme

JSON Data Definition Language (DDL)

npm version npm version CircleCi TavisCI

See it in action

There is an available UI to test different JSON structures described here

Check out

  • CRUD.md
  • FetchR.md

We define an array of entities. All entities have attributes and are assigned primary keys in the form of ids or uuids.

Entity

| Arg Name | Possible values | Example | |-------------|----------------------------------------------------------------------------------|-------------| | name | name of the entity. has to start with a capital letter | "Country" | | table | name of the SQL table. This field is optional, if not given the table is the snake case version of name | my_country| | uuid | boolean, if set to true, the primary key is a uuid vs a id | false | | withOrder | allows ordering (UI: drag/drop) | false | | description | description of the entity, optional | | | logUser | saves user id | false | | isLog | add log logic in table | false | | logTable | creates mirror log table | false | | extends | extends a particular preprogrammed entity (e.g. user) | null | | uniqueSet | array with combination of params that are unique (e.g ["countryId", "userId"]) | null |

Attribute

| Arg Name | Possible values | Default | |-------------|-----------------------------------------------------------------|-------------| | Name | field name | - | | type | see section | string | | optional | true/false | false | | constraints | see section | [] | | description | description of the attribute | | | ui | {textarea, datepicker, slider, etc..} | fieldType |

Field Types

| Type | Example values | |----------|----------------------| | Int | 1, 2, 3 | | Long | 65432345, 2345432345 | | String | hello | | Boolean | true / false | | Decimal | 23.34 | | Date | 2019-01-31 | | Datetime | 2019-01-31 15:23 | | Time | 15:23 | | - | Country |

Every entity name automatically becomes a type. Hence the last example of the table where the type is Country, referring to the entity Country and creating a relation with that other entity.

a more formal version can be found in https://github.com/Nexysweb/DevelopmentConsultingFramework/blob/master/src/types.js

mapping SQL JSON-ddl


BigDecimal => Decimal 10, 4
Int => int(11)
Long => bigint(20)
LocalDateTime => Datetime
LocalDate => Datetime

Constraints

| Arg Name | Possible values | Default | |-------------|-----------------------------------------------------------------|-------------| | typeId | see section | - | | value | value of the constraint | - | | msg | overrides default message | - |

Constraint Types

  • 1: equal = (number)
  • 2: greater than > (number(
  • 3: less than < (number
  • 4: greater than or equal >= (number)
  • 5: less than or equal <= (number)
  • 6: length (string) => https://stackoverflow.com/questions/9043820/regex-to-match-words-of-a-certain-length
  • 7: Regex (string)
  • 8: belongs to a predefined set: [9, 87, 34] (all)
  • 9: async call to API (link to an API request) (string)

Checking format

The format can be checked with the schema-validation: https://github.com/Nexysweb/DevelopmentConsultingFramework/blob/master/src/schema-validation.js

Variable types

Explicit variables

Explicit variables need to be explicitly specified when inserting a record (are part of the payload)

Implicit variables

Implicit variables are not explicitly stated. E.g. taken from auth (userId)

System variables

System variables are not speicified in the model.

Examples are:

  • id / uuid
  • dateAdded
  • dateEdited

Example (simple)

This is an example of a simple model, that links countries and cities.

https://github.com/Nexysweb/digis-ddl/tree/master/src/example/simple-country-city.json

Example (advanced)

https://github.com/Nexysweb/digis-ddl/tree/master/src/example/advanced.js