New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

myappwrite

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

myappwrite

this is the appwrite package i have been using in so many demo application.

latest
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

MyAppWrite

License

MyAppWrite is a Node.js package that extends the functionality of the AppWrite package. It provides additional features and utilities to simplify the integration of your application with the AppWrite backend.

Installation

Before installing MyAppWrite, you need to ensure that you have the AppWrite npm package installed. If you haven't installed it yet, you can do so using the following command:

npm install appwrite

Once you have AppWrite installed, you can install MyAppWrite using npm:

npm install myappwrite

Usage

To use MyAppWrite in your Node.js application, you first need to import both the AppWrite and MyAppWrite modules.

import AppwriteService from "myappwrite";
// need to instantiate AppwriteService like this

const appwriteService = new AppwriteService(
      "Your API Endpoint",
      "Your Project ID"
    );

Now you can use both the functionalities from the AppWrite package and the extended features provided by MyAppWrite.

Features

MyAppWrite extends the AppWrite package with the following additional features:

    const newUser = {
        email: "user@example.com",
        password: "password123",
        name: "John Doe",
    };
    // for creating a user
    appwriteService.createAccount(newUser);

    const user = {
        email: "user@example.com",
        password: "password123",
    }
    // for login a user
    appwriteService.login(user);

    // for getting current user
    appwriteService.getCurrentUser()

    // for logout the user
    appwriteService.logout()

Contributing

If you want to contribute to MyAppWrite, feel free to create a pull request with your proposed changes. Please make sure to follow the coding conventions and include tests for any new features you add.

License

MyAppWrite is licensed under the MIT License. See the LICENSE file for details.

Support

If you encounter any issues or have questions about using MyAppWrite, you can reach out to us through the Issues section of this repository.

Happy coding with MyAppWrite! 🚀

Keywords

Appwrite

FAQs

Package last updated on 20 Jul 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts