Skip to content

Commit 45400a9

Browse files
committed
rename remotecsv to csv-range
1 parent a9e3bed commit 45400a9

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ Fetch and parse a remote CSV file.
55
## Install
66

77
```bash
8-
npm install remotecsv
8+
npm install csv-range
99
```
1010

1111
## Usage
1212

1313
To parse a remote CSV file from a URL:
1414

1515
```typescript
16-
import { parseURL } from 'remotecsv'
16+
import { parseURL } from 'csv-range'
1717
const rows = []
1818
for await (const { row } of parseURL('https://data.source.coop/severo/csv-papaparse-test-files/sample.csv')) {
1919
rows.push(row)

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
2-
"name": "remotecsv",
2+
"name": "csv-range",
33
"version": "0.0.0",
4-
"description": "Fetch and parse a remote CSV file.",
4+
"description": "Parse ranges of a CSV file.",
55
"type": "module",
66
"license": "MIT",
7-
"homepage": "https://github.com/severo/remotecsv#readme",
7+
"homepage": "https://github.com/severo/csv-range#readme",
88
"bugs": {
9-
"url": "https://github.com/severo/remotecsv/issues"
9+
"url": "https://github.com/severo/csv-range/issues"
1010
},
1111
"repository": {
1212
"type": "git",
13-
"url": "git+https://github.com/severo/remotecsv.git"
13+
"url": "git+https://github.com/severo/csv-range.git"
1414
},
1515
"author": "Sylvain Lesage <severo@rednegra.net>",
1616
"files": [

0 commit comments

Comments
 (0)