# What is corexxx?

corexxx provides a common js function and libs which could be reused access projcets.

# what function does it sipport?

| libs name   | function              |
| ----------- | --------------------- |
| dlog        | Provide logging       |
| dcolor      | Colors. template      |
| dassert     | Assertions            |
| dtime       | time related          |
| dtypes      | reusable types        |
| dnetwork    | supporting networkops |
| dvalidation | supporting validation |
| dcookies    | cookies operation     |

# How to add a new feature

1. open this project in vs code.
2. white and debug your code in test.ts
3. copy to the right file
4. add it to the index.ts

corexxx/
├── src/
│ ├── index.ts
│ └── dlog.ts
├── test/
│ └── dlog.test.ts
├── package.json
├── tsconfig.json
├── README.md
└── .gitignore
