Skip to content

Releases: Bes-js/cherry3

Cherry3 Version 5.2.0

04 Sep 13:18
9171752
Compare
Choose a tag to compare

Cherry3 is a SQlite And PostgreSQL object modeling tool designed to work in an asynchronous environment.

Discord Buy Me A Coffee

Installation

Using npm:

$ npm install cherry3

$ npm install sqlite3 -g   # ( For SQlite )
$ npm install pg -g   # ( For PostgreSQL )

Other Installations:

$ yarn add cherry3
$ pnpm add cherry3

Features

  • Simple Setup: Get started quickly with minimal configuration.
  • SQlite And PostgreSQL Storage: Sqlite And PostgreSQL Will Come To Your Help Because It Is Compressed, Economical And Fast.
  • Asynchronous Operations: Perform Database Operations Asynchronously Using Promises.
  • Filter and Update: Easily filter and update records in your collections.

Documentation

=> Click Here

Usage

import { Model, Schema, Types } from 'cherry3';
/* const { Model, Schema, Types } = require('cherry3'); For CommonJS */

// Define a schema for a collection
const userSchema = Schema({
    username: { type: Types.String, default: 'fivesobes' },
    age: Types.Number,
    email: { type: Types.String, default: "support@luppux.com" },
    isAdmin: Types.Boolean,
    interests: Types.Array,
    balance: Types.Float,
    date: Types.Date
});

// Create a model for the "users" collection
const UserModel = new Model('Users', userSchema);


// Example data
const userData = {
  username: 'fivesobes',
  age: 20,
  email: 'support@luppux.com',
  isAdmin: false,
  interests: ['coding', 'reading', 'ertus-mom'],
};

(async () => {
// CRUD operations
  try {
    /* FIND USERS */

    // Find multiple users with conditions
    const users = await UserModel.find({ age: 20, isAdmin: false });
    console.log(users);


  } catch (error) {
    console.error('Error performing CRUD operations:', error.message);
  }
})();

Settings File Definitions

=> Click Here

Types

import { Types } from 'cherry3';

Types.Number // Example => 5
Types.Object // Example => { test:"data text", test3: 5 } 
Types.Date // Example => 1.03.2024
Types.String // Example => "test data text"
Types.Boolean // Example => true or false
Types.Array // Example => [ "five" , "so" , 5 ]

Sqlite Viewer Extension

For Visual Studio Code

PostgreSQL And Other Database Viewer Extension

For Visual Studio Code

License

Cherry3 is licensed under the GPL 3.0 License. See the LICENSE file for details.

Changelog

=> Click Here

Support

Discord Banner

Cherry3 Version 5.1.1

23 Jun 20:00
44edf39
Compare
Choose a tag to compare

Cherry3 is a SQlite And PostgreSQL object modeling tool designed to work in an asynchronous environment.

Discord Buy Me A Coffee

Installation

Using npm:

$ npm install cherry3

$ npm install sqlite3 -g   # ( For SQlite )
$ npm install pg -g   # ( For PostgreSQL )

Other Installations:

$ yarn add cherry3
$ pnpm add cherry3

Features

  • Simple Setup: Get started quickly with minimal configuration.
  • SQlite And PostgreSQL Storage: Sqlite And PostgreSQL Will Come To Your Help Because It Is Compressed, Economical And Fast.
  • Asynchronous Operations: Perform Database Operations Asynchronously Using Promises.
  • Filter and Update: Easily filter and update records in your collections.

Documentation

=> Click Here

Usage

import { Model, Schema, Types } from 'cherry3';
/* const { Model, Schema, Types } = require('cherry3'); For CommonJS */

// Define a schema for a collection
const userSchema = Schema({
    username: { type: Types.String, default: 'fivesobes' },
    age: Types.Number,
    email: { type: Types.String, default: "support@luppux.com" },
    isAdmin: Types.Boolean,
    interests: Types.Array,
    balance: Types.Float,
    date: Types.Date
});

// Create a model for the "users" collection
const UserModel = new Model('Users', userSchema);


// Example data
const userData = {
  username: 'fivesobes',
  age: 20,
  email: 'support@luppux.com',
  isAdmin: false,
  interests: ['coding', 'reading', 'ertus-mom'],
};

(async () => {
// CRUD operations
  try {
    /* FIND USERS */

    // Find multiple users with conditions
    const users = await UserModel.find({ age: 20, isAdmin: false });
    console.log(users);


  } catch (error) {
    console.error('Error performing CRUD operations:', error.message);
  }
})();

Settings File Definitions

=> Click Here

Types

import { Types } from 'cherry3';

Types.Number // Example => 5
Types.Object // Example => { test:"data text", test3: 5 } 
Types.Date // Example => 1.03.2024
Types.String // Example => "test data text"
Types.Boolean // Example => true or false
Types.Array // Example => [ "five" , "so" , 5 ]

Sqlite Viewer Extension

For Visual Studio Code

PostgreSQL And Other Database Viewer Extension

For Visual Studio Code

License

Cherry3 is licensed under the GPL 3.0 License. See the LICENSE file for details.

Changelog

=> Click Here

Support

Discord Banner

Cherry3 Version 5.1.0

23 Jun 19:06
a1ad554
Compare
Choose a tag to compare

Cherry3 is a SQlite And PostgreSQL object modeling tool designed to work in an asynchronous environment.

Discord Buy Me A Coffee

Installation

Using npm:

$ npm install cherry3

$ npm install sqlite3 -g   # ( For SQlite )
$ npm install pg -g   # ( For PostgreSQL )

Other Installations:

$ yarn add cherry3
$ pnpm add cherry3

Features

  • Simple Setup: Get started quickly with minimal configuration.
  • SQlite And PostgreSQL Storage: Sqlite And PostgreSQL Will Come To Your Help Because It Is Compressed, Economical And Fast.
  • Asynchronous Operations: Perform Database Operations Asynchronously Using Promises.
  • Filter and Update: Easily filter and update records in your collections.

Documentation

=> Click Here

Usage

import { Model, Schema, Types } from 'cherry3';
/* const { Model, Schema, Types } = require('cherry3'); For CommonJS */

// Define a schema for a collection
const userSchema = Schema({
    username: { type: Types.String, default: 'fivesobes' },
    age: Types.Number,
    email: { type: Types.String, default: "support@luppux.com" },
    isAdmin: Types.Boolean,
    interests: Types.Array,
    balance: Types.Float,
    date: Types.Date
});

// Create a model for the "users" collection
const UserModel = new Model('Users', userSchema);


// Example data
const userData = {
  username: 'fivesobes',
  age: 20,
  email: 'support@luppux.com',
  isAdmin: false,
  interests: ['coding', 'reading', 'ertus-mom'],
};

(async () => {
// CRUD operations
  try {
    /* FIND USERS */

    // Find multiple users with conditions
    const users = await UserModel.find({ age: 20, isAdmin: false });
    console.log(users);


  } catch (error) {
    console.error('Error performing CRUD operations:', error.message);
  }
})();

Settings File Definitions

=> Click Here

Types

import { Types } from 'cherry3';

Types.Number // Example => 5
Types.Object // Example => { test:"data text", test3: 5 } 
Types.Date // Example => 1.03.2024
Types.String // Example => "test data text"
Types.Boolean // Example => true or false
Types.Array // Example => [ "five" , "so" , 5 ]

Sqlite Viewer Extension

For Visual Studio Code

PostgreSQL And Other Database Viewer Extension

For Visual Studio Code

License

Cherry3 is licensed under the GPL 3.0 License. See the LICENSE file for details.

Changelog

=> Click Here

Support

Discord Banner

Cherry3 Version 5.0.3

21 Jun 21:56
08a97d9
Compare
Choose a tag to compare

Cherry3 is a SQlite object modeling tool designed to work in an asynchronous environment.

Discord Buy Me A Coffee

Installation

Using npm:

$ npm install cherry3

Using yarn:

$ yarn add cherry3

Using pnpm:

$ pnpm add cherry3

Features

  • Simple Setup: Get started quickly with minimal configuration.
  • SQlite Storage: Sqlite Will Come To Your Help Because It Is Compressed, Economical And Fast.
  • Asynchronous Operations: Perform Database Operations Asynchronously Using Promises.
  • Filter and Update: Easily filter and update records in your collections.

Documentation

=> Click Here

Usage

import { Model, Schema, Types } from 'cherry3';
/* const { Model, Schema, Types } = require('cherry3'); For CommonJS */

// Define a schema for a collection
const userSchema = Schema({
    username: { type: Types.String, default: 'fivesobes' },
    age: Types.Number,
    email: { type: Types.String, default: "support@luppux.com" },
    isAdmin: Types.Boolean,
    interests: Types.Array,
    balance: Types.Float,
    date: Types.Date
});

// Create a model for the "users" collection
const UserModel = new Model('Users', userSchema);


// Example data
const userData = {
  username: 'fivesobes',
  age: 20,
  email: 'support@luppux.com',
  isAdmin: false,
  interests: ['coding', 'reading', 'ertus-mom'],
};

(async () => {
// CRUD operations
  try {
    /* FIND USERS */

    // Find multiple users with conditions
    const users = await UserModel.find({ age: 20, isAdmin: false });
    console.log(users);


  } catch (error) {
    console.error('Error performing CRUD operations:', error.message);
  }
})();

Settings File Definitions

=> Click Here

Types

import { Types } from 'cherry3';

Types.Number // Example => 5
Types.Object // Example => { test:"data text", test3: 5 } 
Types.Date // Example => 1.03.2024
Types.String // Example => "test data text"
Types.Boolean // Example => true or false
Types.Array // Example => [ "five" , "so" , 5 ]

Sqlite Viewer Extension

For Visual Studio Code

License

Cherry3 is licensed under the Apache License 2.0 License. See the LICENSE file for details.

Changelog

=> Click Here

Support

Discord Banner

Cherry3 Version 5.0.2

21 Jun 13:05
79a9dda
Compare
Choose a tag to compare

Cherry3 is a SQlite object modeling tool designed to work in an asynchronous environment.

Discord Buy Me A Coffee

Installation

Using npm:

$ npm install cherry3

Using yarn:

$ yarn add cherry3

Using pnpm:

$ pnpm add cherry3

Features

  • Simple Setup: Get started quickly with minimal configuration.
  • SQlite Storage: Sqlite Will Come To Your Help Because It Is Compressed, Economical And Fast.
  • Asynchronous Operations: Perform Database Operations Asynchronously Using Promises.
  • Filter and Update: Easily filter and update records in your collections.

Documentation

=> Click Here

Usage

import { Model, Schema, Types } from 'cherry3';
/* const { Model, Schema, Types } = require('cherry3'); For CommonJS */

// Define a schema for a collection
const userSchema = Schema({
    username: { type: Types.String, default: 'fivesobes' },
    age: Types.Number,
    email: { type: Types.String, default: "support@luppux.com" },
    isAdmin: Types.Boolean,
    interests: Types.Array,
    balance: Types.Float,
    date: Types.Date
});

// Create a model for the "users" collection
const UserModel = new Model('Users', userSchema);


// Example data
const userData = {
  username: 'fivesobes',
  age: 20,
  email: 'support@luppux.com',
  isAdmin: false,
  interests: ['coding', 'reading', 'ertus-mom'],
};

(async () => {
// CRUD operations
  try {
    /* FIND USERS */

    // Find multiple users with conditions
    const users = await UserModel.find({ age: 20, isAdmin: false });
    console.log(users);


  } catch (error) {
    console.error('Error performing CRUD operations:', error.message);
  }
})();

Settings File Definitions

=> Click Here

Types

import { Types } from 'cherry3';

Types.Number // Example => 5
Types.Object // Example => { test:"data text", test3: 5 } 
Types.Date // Example => 1.03.2024
Types.String // Example => "test data text"
Types.Boolean // Example => true or false
Types.Array // Example => [ "five" , "so" , 5 ]

Sqlite Viewer Extension

For Visual Studio Code

License

Cherry3 is licensed under the Apache License 2.0 License. See the LICENSE file for details.

Changelog

=> Click Here

Support

Discord Banner

Cherry3 Version 5.0.1

21 Jun 12:48
a1fa620
Compare
Choose a tag to compare

Cherry3 is a SQlite object modeling tool designed to work in an asynchronous environment.

Discord Buy Me A Coffee

Installation

Using npm:

$ npm install cherry3

Using yarn:

$ yarn add cherry3

Using pnpm:

$ pnpm add cherry3

Features

  • Simple Setup: Get started quickly with minimal configuration.
  • SQlite Storage: Sqlite Will Come To Your Help Because It Is Compressed, Economical And Fast.
  • Asynchronous Operations: Perform Database Operations Asynchronously Using Promises.
  • Filter and Update: Easily filter and update records in your collections.

Documentation

=> Click Here

Usage

import { Model, Schema, Types } from 'cherry3';
/* const { Model, Schema, Types } = require('cherry3'); For CommonJS */

// Define a schema for a collection
const userSchema = Schema({
    username: { type: Types.String, default: 'fivesobes' },
    age: Types.Number,
    email: { type: Types.String, default: "support@luppux.com" },
    isAdmin: Types.Boolean,
    interests: Types.Array,
    balance: Types.Float,
    date: Types.Date
});

// Create a model for the "users" collection
const UserModel = new Model('Users', userSchema);


// Example data
const userData = {
  username: 'fivesobes',
  age: 20,
  email: 'support@luppux.com',
  isAdmin: false,
  interests: ['coding', 'reading', 'ertus-mom'],
};

(async () => {
// CRUD operations
  try {
    /* FIND USERS */

    // Find multiple users with conditions
    const users = await UserModel.find({ age: 20, isAdmin: false });
    console.log(users);


  } catch (error) {
    console.error('Error performing CRUD operations:', error.message);
  }
})();

Settings File Definitions

=> Click Here

Types

import { Types } from 'cherry3';

Types.Number // Example => 5
Types.Object // Example => { test:"data text", test3: 5 } 
Types.Date // Example => 1.03.2024
Types.String // Example => "test data text"
Types.Boolean // Example => true or false
Types.Array // Example => [ "five" , "so" , 5 ]

Sqlite Viewer Extension

For Visual Studio Code

License

Cherry3 is licensed under the Apache License 2.0 License. See the LICENSE file for details.

Changelog

=> Click Here

Support

Discord Banner

Cherry3 Version 5.0.0

21 Jun 12:31
b1eba60
Compare
Choose a tag to compare

Cherry3 is a SQlite object modeling tool designed to work in an asynchronous environment.

Discord Buy Me A Coffee

Installation

Using npm:

$ npm install cherry3

Using yarn:

$ yarn add cherry3

Using pnpm:

$ pnpm add cherry3

Features

  • Simple Setup: Get started quickly with minimal configuration.
  • SQlite Storage: Sqlite Will Come To Your Help Because It Is Compressed, Economical And Fast.
  • Asynchronous Operations: Perform Database Operations Asynchronously Using Promises.
  • Filter and Update: Easily filter and update records in your collections.

Documentation

=> Click Here

Usage

import { Model, Schema, Types } from 'cherry3';
/* const { Model, Schema, Types } = require('cherry3'); For CommonJS */

// Define a schema for a collection
const userSchema = Schema({
    username: { type: Types.String, default: 'fivesobes' },
    age: Types.Number,
    email: { type: Types.String, default: "support@luppux.com" },
    isAdmin: Types.Boolean,
    interests: Types.Array,
    balance: Types.Float,
    date: Types.Date
});

// Create a model for the "users" collection
const UserModel = new Model('Users', userSchema);


// Example data
const userData = {
  username: 'fivesobes',
  age: 20,
  email: 'support@luppux.com',
  isAdmin: false,
  interests: ['coding', 'reading', 'ertus-mom'],
};

(async () => {
// CRUD operations
  try {
    /* FIND USERS */

    // Find multiple users with conditions
    const users = await UserModel.find({ age: 20, isAdmin: false });
    console.log(users);


  } catch (error) {
    console.error('Error performing CRUD operations:', error.message);
  }
})();

Settings File Definitions

=> Click Here

Types

import { Types } from 'cherry3';

Types.Number // Example => 5
Types.Object // Example => { test:"data text", test3: 5 } 
Types.Date // Example => 1.03.2024
Types.String // Example => "test data text"
Types.Boolean // Example => true or false
Types.Array // Example => [ "five" , "so" , 5 ]

Sqlite Viewer Extension

For Visual Studio Code

License

Cherry3 is licensed under the Apache License 2.0 License. See the LICENSE file for details.

Changelog

=> Click Here

Support

Discord Banner

Cherry3 Version 4.0.0

20 May 18:29
f74c2d6
Compare
Choose a tag to compare

Cherry3 is a SQlite object modeling tool designed to work in an asynchronous environment.

Discord Buy Me A Coffee

Installation

Using npm:

$ npm install cherry3

Using yarn:

$ yarn add cherry3

Using pnpm:

$ pnpm add cherry3

Features

  • Simple Setup: Get started quickly with minimal configuration.
  • SQlite Storage: Sqlite Will Come To Your Help Because It Is Compressed, Economical And Fast.
  • Asynchronous Operations: Perform Database Operations Asynchronously Using Promises.
  • Filter and Update: Easily filter and update records in your collections.

Documentation

=> Click Here

Usage

import { Model, Schema, Types } from 'cherry3';
/* const { Model, Schema, Types } = require('cherry3'); For CommonJS */

// Define a schema for a collection
const userSchema = Schema({
    username: { type: Types.String, default: 'fivesobes' },
    age: Types.Number,
    email: { type: Types.String, default: "support@luppux.com" },
    isAdmin: Types.Boolean,
    interests: Types.Array,
    balance: Types.Float,
    date: Types.Date
});

// Create a model for the "users" collection
const UserModel = new Model('Users', userSchema);


// Example data
const userData = {
  username: 'fivesobes',
  age: 20,
  email: 'support@luppux.com',
  isAdmin: false,
  interests: ['coding', 'reading', 'ertus-mom'],
};

(async () => {
// CRUD operations
  try {
    /* FIND USERS */

    // Find multiple users with conditions
    const users = await UserModel.find({ age: 20, isAdmin: false });
    console.log(users);


  } catch (error) {
    console.error('Error performing CRUD operations:', error.message);
  }
})();

Settings File Definitions

=> Click Here

Types

import { Types } from 'cherry3';

Types.Number // Example => 5
Types.Object // Example => { test:"data text", test3: 5 } 
Types.Date // Example => 1.03.2024
Types.String // Example => "test data text"
Types.Boolean // Example => true or false
Types.Array // Example => [ "five" , "so" , 5 ]

Sqlite Viewer Extension

For Visual Studio Code

License

Cherry3 is licensed under the Apache License 2.0 License. See the LICENSE file for details.

Changelog

=> Click Here

Support

Discord Banner

Cherry3 Version 3.0.6

30 Apr 00:05
33a6f4f
Compare
Choose a tag to compare

Cherry3 is a SQlite object modeling tool designed to work in an asynchronous environment.

Discord Buy Me A Coffee

Installation

Using npm:

$ npm install cherry3

Using yarn:

$ yarn add cherry3

Using pnpm:

$ pnpm add cherry3

Features

  • Simple Setup: Get started quickly with minimal configuration.
  • SQlite Storage: Sqlite Will Come To Your Help Because It Is Compressed, Economical And Fast.
  • Asynchronous Operations: Perform Database Operations Asynchronously Using Promises.
  • Filter and Update: Easily filter and update records in your collections.

Documentation

=> Click Here

Usage

import { Model, Schema, Types } from 'cherry3';
/* const { Model, Schema, Types } = require('cherry3'); For CommonJS */

// Define a schema for a collection
const userSchema = Schema({
    username: { type: Types.String, default: 'fivesobes' },
    age: Types.Number,
    email: { type: Types.String, default: "support@luppux.com" },
    isAdmin: Types.Boolean,
    interests: Types.Array,
    balance: Types.Float,
    date: Types.Date
});

// Create a model for the "users" collection
const UserModel = new Model('Users', userSchema);


// Example data
const userData = {
  username: 'fivesobes',
  age: 20,
  email: 'support@luppux.com',
  isAdmin: false,
  interests: ['coding', 'reading', 'ertus-mom'],
};

(async () => {
// CRUD operations
  try {
    /* FIND USERS */

    // Find multiple users with conditions
    const users = await UserModel.find({ age: 20, isAdmin: false });
    console.log(users);


  } catch (error) {
    console.error('Error performing CRUD operations:', error.message);
  }
})();

Settings File Definitions

=> Click Here

Types

import { Types } from 'cherry3';

Types.Number // Example => 5
Types.Object // Example => { test:"data text", test3: 5 } 
Types.Date // Example => 1.03.2024
Types.String // Example => "test data text"
Types.Boolean // Example => true or false
Types.Array // Example => [ "five" , "so" , 5 ]

Sqlite Viewer Extension

For Visual Studio Code

License

Cherry3 is licensed under the Apache License 2.0 License. See the LICENSE file for details.

Changelog

=> Click Here

Support

Discord Banner

Cherry3 Version 3.0.5

05 Apr 11:37
b1cdd6d
Compare
Choose a tag to compare

Cherry3 is a SQlite object modeling tool designed to work in an asynchronous environment.

Discord Buy Me A Coffee

Installation

Using npm:

$ npm install cherry3

Using yarn:

$ yarn add cherry3

Using pnpm:

$ pnpm add cherry3

Features

  • Simple Setup: Get started quickly with minimal configuration.
  • SQlite Storage: Sqlite Will Come To Your Help Because It Is Compressed, Economical And Fast.
  • Asynchronous Operations: Perform Database Operations Asynchronously Using Promises.
  • Filter and Update: Easily filter and update records in your collections.

Documentation

=> Click Here

Usage

import { Model, Schema, Types } from 'cherry3';
/* const { Model, Schema, Types } = require('cherry3'); For CommonJS */

// Define a schema for a collection
const userSchema = Schema({
    username: { type: Types.String, default: 'fivesobes' },
    age: Types.Number,
    email: { type: Types.String, default: "support@luppux.com" },
    isAdmin: Types.Boolean,
    interests: Types.Array,
    balance: Types.Float,
    date: Types.Date
});

// Create a model for the "users" collection
const UserModel = new Model('Users', userSchema);


// Example data
const userData = {
  username: 'fivesobes',
  age: 20,
  email: 'support@luppux.com',
  isAdmin: false,
  interests: ['coding', 'reading', 'ertus-mom'],
};

(async () => {
// CRUD operations
  try {
    /* FIND USERS */

    // Find multiple users with conditions
    const users = await UserModel.find({ age: 20, isAdmin: false });
    console.log(users);


  } catch (error) {
    console.error('Error performing CRUD operations:', error.message);
  }
})();

Settings File Definitions

=> Click Here

Types

import { Types } from 'cherry3';

Types.Number // Example => 5
Types.Object // Example => { test:"data text", test3: 5 } 
Types.Date // Example => 1.03.2024
Types.String // Example => "test data text"
Types.Boolean // Example => true or false
Types.Array // Example => [ "five" , "so" , 5 ]

Sqlite Viewer Extension

For Visual Studio Code

License

Cherry3 is licensed under the Apache License 2.0 License. See the LICENSE file for details.

Changelog

=> Click Here

Support

Discord Banner