Skip to content

Commit d7f11d1

Browse files
committed
Forgot a couple of references to reason in the readme
1 parent a347951 commit d7f11d1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# rescript-nodejs
22

3-
----
3+
Node.js bindings for ReScript
44

55
## Installation
66

@@ -20,7 +20,7 @@ Then add rescript-nodejs to `bsconfig.json`:
2020

2121
## Goal of this library
2222

23-
Help all Reason Node.js apps and libraries to be built faster by reducing the time spent on hand written bindings.
23+
Help all ReScript Node.js apps and libraries to be built faster by reducing the time spent on hand written bindings.
2424

2525
## Non-Goals
2626

@@ -34,15 +34,15 @@ Help all Reason Node.js apps and libraries to be built faster by reducing the ti
3434

3535
### Stream a file into stdout:
3636

37-
```reason
37+
```rescript
3838
Fs.createReadStream("/path")
3939
->Stream.pipe(Process.(stdout(process)))
4040
->Stream.onError(_ => Js.log("handleError"))
4141
```
4242

4343
### Echo server:
4444

45-
```reason
45+
```rescript
4646
Http.createServer((request, response) => {
4747
request->Stream.onData(data => Js.log(data))
4848
request->Stream.pipe(response)->ignore

0 commit comments

Comments
 (0)