1.7.3 • Published 12 months ago

@hellooo-stack/hellooo-commons v1.7.3

Weekly downloads
-
License
ISC
Repository
github
Last release
12 months ago

Commons-NodeJS

Code Size NPM GitHub license

Commons-NodeJS is a common Node.js library used in the Hellooo Stack. It provides a range of useful functionalities for Excel, File, HTTP, MongoDB, MySQL, Redis and other common tasks. As a developer, this library is a great tool for quickly and efficiently building Node.js applications, allowing you to handle common tasks without having to reinvent the wheel.

QuickStart

Installation

You can easily install the client library using the following command:

npm i @hellooo-stack/hellooo-commons

Features

You can find full examples in the 'doc/examples' directory. And here are some of the key features and example code for using this library:

Excel

The Excel module offers convenient methods for reading from and writing to Excel files, allowing you to perform these tasks with just one line of code

File

The File module supports file detection and provides read/write functionalities, as well as the ability to handle large files.

HTTP

The HTTP module supports the use of ES6 syntax for calling the HTTP module.

MySQL

The MySQL module supports the use of ES6 syntax for calling the MySQL module.

const {mysqlAsync, utils: {datetimeUtil}} = require('@hellooo-stack/hellooo-commons');
const mysql = require('mysql');

const mysqlConfig = {
    host: 'localhost',
    user: 'root',
    password: 'nopwd',
    database: 'example',
    connectionLimit: 10
};
(async () => {
    const pool = mysqlAsync.createPool(mysqlConfig);
    const connection = await pool.getConnectionAsync();
    
    const insertSQL = `insert into .... values ...`;
    await connection.queryAsync(insertSQL);

    // release connection
    connection.release();

    // end pool
    await pool.endPoolAsync();
})();

Redis

The Redis module supports the use of ES6 syntax for calling the MySQL module.

Contributing

We welcome contributions to the Commons-NodeJS library. Please refer to the Contributing Guide for more information.

License

This library is licensed under the Apache Version 2.0 license. Please see the LICENSE file for more information.

1.7.3

12 months ago

1.7.2

1 year ago

1.7.1

1 year ago

1.7.0

1 year ago

1.6.2

1 year ago

1.6.1

1 year ago

1.6.0

1 year ago

1.5.0

1 year ago

1.4.1

1 year ago

1.4.0

1 year ago

1.3.4

1 year ago

1.3.3

1 year ago

1.3.2

1 year ago

1.3.1

1 year ago

1.3.0

1 year ago

1.2.0

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago