From 17bf5b2ed3eaa70ee780eafac3ca547ae5fc0845 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Sat, 6 Jul 2024 22:06:42 +0200 Subject: [PATCH] Update README.md --- README.md | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/README.md b/README.md index 42af3ed2a..6a7534c87 100644 --- a/README.md +++ b/README.md @@ -26,16 +26,36 @@ A library that gives you access to the powerful Parse Server backend from your J --- -- [Getting Started](#getting-started) - - [Using Parse on Different Platforms](#using-parse-on-different-platforms) - - [Core Manager](#core-manager) - [Compatibility](#compatibility) - [Parse Server](#parse-server) - [Node.js](#nodejs) +- [Getting Started](#getting-started) + - [Using Parse on Different Platforms](#using-parse-on-different-platforms) + - [Core Manager](#core-manager) - [3rd Party Authentications](#3rd-party-authentications) - [Experimenting](#experimenting) - [Contributing](#contributing) +## Compatibility + +### Parse Server + +Parse JS SDK is compatible with the following versions of Parse Server. + +| Parse JS SDK | Parse Server | +|------------------|--------------| +| >= 4.0.0 < 5.0.0 | <= 6.0.0 | +| >= 5.0.0 | >= 7.0.0 | + +### Node.js + +Parse JS SDK is continuously tested with the most recent releases of Node.js to ensure compatibility. We follow the [Node.js Long Term Support plan](https://github.com/nodejs/Release) and only test against versions that are officially supported and have not reached their end-of-life date. + +| Version | Latest Version | End-of-Life | Compatible | +|------------|----------------|-------------|------------| +| Node.js 18 | 18.19.0 | April 2025 | ✅ Yes | +| Node.js 20 | 20.10.0 | April 2026 | ✅ Yes | + ## Getting Started The easiest way to integrate the Parse SDK into your JavaScript project is through the [npm module](https://npmjs.org/parse). @@ -102,26 +122,6 @@ Parse.CoreManager.set('REQUEST_ATTEMPT_LIMIT', 1) Parse.CoreManager.setRESTController(MyRESTController); ``` -## Compatibility - -### Parse Server - -Parse JS SDK is compatible with the following versions of Parse Server. - -| Parse JS SDK | Parse Server | -|--------------|--------------| -| 4.x.x | <= 6.x.x | -| 5.x.x | >= 7.x.x | - -### Node.js - -Parse JS SDK is continuously tested with the most recent releases of Node.js to ensure compatibility. We follow the [Node.js Long Term Support plan](https://github.com/nodejs/Release) and only test against versions that are officially supported and have not reached their end-of-life date. - -| Version | Latest Version | End-of-Life | Compatible | -|------------|----------------|-------------|------------| -| Node.js 18 | 18.19.0 | April 2025 | ✅ Yes | -| Node.js 20 | 20.10.0 | April 2026 | ✅ Yes | - ## 3rd Party Authentications Parse Server supports many [3rd Party Authenications][3rd-party-auth]. It is possible to [linkWith][link-with] any 3rd Party Authentication by creating a [custom authentication module][custom-auth-module].