This `node-parse-api` library serves as a Node.js client for the Parse.com REST API, offering functionalities like data insertion, user management (login, registration), file uploads, and querying objects. At version 0.3.8, it reflects an early period of Node.js and the Parse.com platform. A critical aspect of this package is its tight coupling to the original Parse.com hosted service, which was officially shut down in January 2017. Consequently, while the package itself is available, its primary utility for connecting to `api.parse.com` is obsolete. There is no indication of active development or a release cadence, and it is likely abandoned, primarily existing as historical reference for developers who might have used the original Parse.com platform. Its design predates modern JavaScript module systems, relying exclusively on CommonJS.
npm install node-parse-apiVerified import paths — ran on the pinned version, not inferred.
Initializes the Parse API client with an App ID and Master Key and demonstrates inserting a new object into a Parse class. Note: This library targets the now-defunct Parse.com service.
This package is effectively obsolete for its original purpose. Developers should migrate to an alternative Parse Server client (e.g., the official `parse` npm package which targets self-hosted Parse Server instances) or a completely different backend solution.
Avoid using this package in new projects. For historical projects, a full migration to a modern Parse SDK or another backend is strongly recommended.
Ensure your project is configured for CommonJS, or use `const { Parse } = require('node-parse-api');` in a context where CommonJS interoperability is supported.This library is designed for the defunct Parse.com service. If attempting to connect to a self-hosted Parse Server, this specific library might not be suitable or require internal modifications (e.g., `Parse._api_host`). Consider using the official `@parse/node` or `parse` npm packages instead.
Ensure you are instantiating the `Parse` client correctly after requiring it: `const { Parse } = require('node-parse-api'); const app = new Parse(APP_ID, MASTER_KEY);`Run `npm install node-parse-api` to add the package to your project dependencies.
No dependency data recorded yet.