Skip to content

Commit

Permalink
Rename package
Browse files Browse the repository at this point in the history
  • Loading branch information
neriyaco committed Dec 7, 2024
1 parent e548820 commit c00c18c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
# DotScript
# DotsScript

DotScript is a simple JavaScript library that makes your JavaScript code much simpler by making the whole code using 2 characters only, the dot `.` and the `` character.
DotsScript is a simple JavaScript library that makes your JavaScript code much simpler by making the whole code using 2 characters only, the `.` and the `` character.

## Installation

You can install DotScript by using the following command:
You can install DotsScript by using the following command:

```bash
npm install dot-script
npm install dotsscript
```

Or yarn:

```bash
yarn add dot-script
yarn add dotsscript
```

You can also install it globally by using the following command:

```bash
npm install -g dot-script
npm install -g dotsscript
```

Or yarn:

```bash
yarn global add dot-script
yarn global add dotsscript
```

## Usage

You can use DotScript by importing the library in your JavaScript file:
You can use DotsScript by importing the library in your JavaScript file:

```javascript
import 'dot-script';
import 'dotsscript';

// Your code here
```
Expand All @@ -44,14 +44,14 @@ Or you can run it in the terminal by using the following command:
dot index.ds
```

Where `index.ds` is the file that contains your DotScript code.
Where `index.ds` is the file that contains your DotsScript code.

## Example

Here is an example of how you can use DotScript:
Here is an example of how you can use DotsScript:

```javascript
import 'dot-script';
import 'dotsscript';

ᱹ.ᱹᱹ.ᱹᱹᱹ.ᱹᱹ.ᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹ.ᱹᱹ.ᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹ.ᱹᱹ.ᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹ.ᱹᱹ
.ᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹ.ᱹᱹ.ᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹ.ᱹᱹ.ᱹᱹᱹᱹᱹ.ᱹᱹᱹᱹᱹ.ᱹᱹᱹᱹᱹ.ᱹᱹ.ᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹᱹ.ᱹᱹ
Expand All @@ -71,7 +71,7 @@ As you can see, the code is much simpler and do not contain any characters that

## Documentation

The global object `` is the main object that you can use to access the DotScript API.
The global object `` is the main object that you can use to access the DotsScript API.
It contains the following properties:

| Property | Description |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "dot-script",
"name": "dotsscript",
"version": "1.0.0",
"description": "Making javascript much simpler",
"main": "dist/index.js",
Expand Down

0 comments on commit c00c18c

Please sign in to comment.