Socket
Socket
Sign inDemoInstall

arunacore-api

Package Overview
Dependencies
13
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    arunacore-api

ArunaCore is an open source websocket server made with nodejs for intercomunication between applications.


Version published
Weekly downloads
1
Maintainers
1
Created
Weekly downloads
 

Readme

Source

ArunaCore

Summary

0 - TODO List

1 - Introduction

2 - Installation

3 - Wiki

4 - API

5 - Contributing

6 - Authors

7 - License

TODO

  • Implement plugins
  • Create the wiki
  • Improve Todo List

Introduction

ArunaCore is a framework that helps developers to build their own applications.

with it is ease to create and manange a new application created from scratch or to use on top of existing application.

It uses websocket to communicate with your application and it is easy to use.

You can also develop your own plugins to extend the functionality of ArunaCore (SOON:tm:).

Installation

TODO

Wiki

If you have any question, please check our Wiki (WIP), contact us on Github Issues Tab or in the Discord.

API

Using the API is easy!

Installing:

To install, just use npm install arunacore-apior yarn add arunacore-api.

Creating a client:

import { ArunaClient } from 'arunacore-api';

const client = new ArunaClient('localhost', 3000, '<clientName>');

client.connect();

Receiving a message:

The message is received as a JSON object with parsed informations.

client.on('message', (message) => {
  console.log(message);
});

The full documentation:

You can find the full documentation on Wiki.

Contributing

If you want to contribute to ArunaCore, please check our CONTRIBUTING.md file (TODO).

Authors

ArunaCore is developed with 💜 by Lobo Metalurgico and Space_Interprise.

License

ArunaCore is licensed under the GPL-3.0 license.

Keywords

FAQs

Last updated on 02 Jan 2024

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc