Skip to content

Commit

Permalink
Rename package
Browse files Browse the repository at this point in the history
  • Loading branch information
aldipermanaetikaputra committed Apr 4, 2023
1 parent 29664d8 commit abf46cd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# chunkreader
# chunkreader2

Asynchronous, buffered, chunk-by-chunk file reader with customizable buffer size.

Expand All @@ -7,13 +7,13 @@ Asynchronous, buffered, chunk-by-chunk file reader with customizable buffer size
NPM

```sh
npm install chunkreader
npm install chunkreader2
```

yarn

```sh
yarn add chunkreader
yarn add chunkreader2
```

## Usage
Expand All @@ -23,13 +23,13 @@ yarn add chunkreader
ES6

```js
import { ChunkReader } from 'chunkreader';
import { ChunkReader } from 'chunkreader2';
```

CommonJS

```js
const { ChunkReader } = require('chunkreader');
const { ChunkReader } = require('chunkreader2');
```

#### Example
Expand Down Expand Up @@ -183,7 +183,7 @@ yarn test

## Related

- [linereader2](https://github.com/aldipermanaetikaputra/linereader2) - Asynchronous, buffered, line-by-line file reader with customizable buffer size and separator.
- [linereader2](https://github.com/aldipermanaetikaputra/line-reader2) - Asynchronous, buffered, line-by-line file reader with customizable buffer size and separator.

## Contribute

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "chunkreader",
"name": "chunkreader2",
"version": "1.1.5",
"description": "Asynchronous, buffered, chunk-by-chunk file reader with customizable buffer size on Node.js.",
"url": "https://github.com/aldipermanaetikaputra/chunkreader",
"url": "https://github.com/aldipermanaetikaputra/chunkreader2",
"keywords": [
"chunk",
"reader",
Expand All @@ -14,7 +14,7 @@
"author": "Aldi Permana Etika Putra <aldipermanaetikaputra@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aldipermanaetikaputra/chunkreader/issues"
"url": "https://github.com/aldipermanaetikaputra/chunkreader2/issues"
},
"files": [
"lib"
Expand All @@ -29,7 +29,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/aldipermanaetikaputra/chunkreader.git"
"url": "https://github.com/aldipermanaetikaputra/chunkreader2.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
Expand Down

0 comments on commit abf46cd

Please sign in to comment.