You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tablecloth is a library that shims over various standard libraries so they have the same function and module names, which using idiomatic types and patterns in each language.
8
7
9
-
Supports:
10
-
- OCaml (using Base, pipe-last, labels, and snake_case)
11
-
- Rescript (uses Belt, pipe-first, and camelCase)
12
-
- F# (in development - uses FSharp.Core, pipe-last, and camelCase)
13
-
- Elm (just in the sense that it is extremely similar to Elm's standard libraries)
8
+
This is the Rescript implementation, which uses Belt, pipe-first, and camelCase.
14
9
15
10
**Tablecloth is alpha-quality software, and is pre-1.0. It is currently undergoing
16
11
some significant shifts and some libraries listed below are not available yet.
@@ -22,8 +17,6 @@ Check out the [website](https://www.tablecloth.dev) for our interactive API docu
22
17
23
18
**Note: these instructions are for the upcoming new version of tablecloth**
24
19
25
-
### Rescript
26
-
27
20
Install via npm by:
28
21
29
22
`npm install tablecloth-rescript`
@@ -32,16 +25,6 @@ Then add to your `bsconfig.json` file:
32
25
33
26
`"bs-dependencies" : ["tablecloth-rescript"]`
34
27
35
-
### OCaml
36
-
37
-
Install via opam:
38
-
39
-
`opam install tablecloth-ocaml-base`
40
-
41
-
Then add to your dune file:
42
-
43
-
`(libraries (tablecloth-ocaml-base ...))`
44
-
45
28
## Usage
46
29
47
30
The recommended way to use Tablecloth is with a top-level open at the beginning of a file.
@@ -61,46 +44,14 @@ let () =
61
44
62
45
## Supported versions
63
46
64
-
### Rescript
65
-
66
47
Tablecloth supports Rescript 9. [Older versions of Tablecloth](https://www.npmjs.com/package/tablecloth-bucklescript) supported older versions of bs-platform.
67
48
68
-
### Native
69
-
70
-
Tablecloth for native OCaml supports OCaml 4.08-4.10 and Base
71
-
v0.12.2/v0.13.2. We are open to supporting other versions:
72
-
73
-
- OCaml 4.11 is believed to work but is not officially supported as there is no
74
-
docker container for it in CI.
75
-
- OCaml 4.06 and 4.07 require small tweaks to our build system
76
-
- Base v0.9, v0.10, and v0.11 require small code changes
77
-
- Base v0.14 require small dependency tweaks
78
-
79
49
### Development
80
50
81
51
When developing Tablecloth, you can test it against different versions of
82
-
rescript, OCaml (native) and Base, using the following commands:
52
+
rescript, using the following commands:
83
53
84
54
-`TC_RESCRIPT_VERSION=7.1.1 make deps-rescript`
85
-
-`TC_BASE_VERSION=v0.14.0 TC_NATIVE_OCAML_SWITCH=4.11.0 make deps-native`
86
-
87
-
## Design goals of Tablecloth
88
-
89
-
When switching between functional languages, it can be frustrating to try to
90
-
remember the names of different functions, which are not standardized and differ
91
-
due to history.
92
-
93
-
At the same time, we recognize that each language has their own idioms, and
94
-
often have mature and optimized standard libraries that we do not wish to replace.
95
-
As such, each version of tablecloth is simple a set of functions which call existing
96
-
standard libraries, and uses idiomatic patterns for the language in question.
97
-
98
-
Tablecloth was originally written to help port the Darklang frontend from Elm to
99
-
ReasonML. As we used OCaml on the backend, we tried to reuse some libraries by adding
100
-
OCaml versions of the ReasonML functions. However, code reuse was difficult and never
101
-
took off, and we ended up splitting the two libraries when the ReasonML community
102
-
moved to Rescript, which did not have the goal to be compatible with OCaml. When we
103
-
ported the backend from OCaml to F#, we added an F# version.
104
55
105
56
## Contributions
106
57
@@ -114,29 +65,19 @@ Check out the [dedicated guide](./documentation/contributing.md) on contributing
114
65
115
66
## Developing
116
67
117
-
Please refer to the `Makefile` for a complete list of supported actions. Here is
68
+
Please refer to the `package.json` for a complete list of supported actions. Here is
-`make test`: Run the test suite. You may need to `make build` first.
124
-
-`make check-format`: Check your code is formatted correctly.
125
-
-`make format`: Format code.
126
-
-`cd ocamldoc-json-generator && make deps && make doc`: Build model.json for the website (needs to be updated and checked in whenever the APIs change.)
127
-
128
-
### Rescript dependencies
129
-
130
-
- Requires a recent version of [NodeJS](https://nodejs.org/en/)
131
-
132
-
### OCaml dependencies
133
-
134
-
- Install OCaml and OPAM [based on your OS](https://ocaml.org/docs/install.html)
135
-
- You may need to run `opam init`
71
+
```
72
+
npm install
73
+
npm run build
74
+
npm run test
75
+
npm run format
76
+
```
136
77
137
78
## License
138
79
139
-
Tablecloth uses the [MIT](./LICENSE) license.
80
+
Tablecloth-rescript uses the [MIT](./LICENSE) license.
Copy file name to clipboardexpand all lines: documentation/contributing.md
+1-68
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: "Contributing"
3
3
order: "4"
4
4
---
5
5
6
-
Tablecloth is an ideal library to contribute to, even if you're new to OCaml / Reason.
6
+
Tablecloth is an ideal library to contribute to, even if you're new to Rescript.
7
7
8
8
The maintainers are warm and friendly, and the project abides by a [Code of Conduct](../CODE_OF_CONDUCT.md).
9
9
@@ -22,7 +22,6 @@ Here are some ways to contribute:
22
22
- Improve a function's documentation by discussing an edge-case
23
23
- Check a function cannot throw exceptions (and add a note to the function documentation to that effect)
24
24
- Suggest a new function or module by [creating an issue](https://github.com/darklang/tablecloth/issues/new).
25
-
- Improve the [documentation site](https://github.com/darklang/tablecloth/tree/master/website)
26
25
- Optimize a function
27
26
28
27
If you'd like to contribute but don't know where to start [open an
@@ -44,69 +43,3 @@ Many small PR's are better than one big one.
44
43
Don't save up small changes for one big PR if you can avoid it.
45
44
46
45
Small PR's are less likely to cause conflicts, easier to review and take less effort.
47
-
48
-
### Design for a concrete use case
49
-
50
-
Struggling to provide a good example for your function / module? Maybe it shouldn't be in Tablecloth (although writing good examples *is hard*).
51
-
52
-
Completeness isn't a goal, just because one module has a function doesn't mean all the modules that *can* have that function *should* have it too.
53
-
54
-
## Names
55
-
56
-
### Don't use abbreviations
57
-
58
-
Use human readable names.
59
-
60
-
Having an API that is clear is more important than saving three or four characters by dropping letters from a name.
61
-
62
-
Abbreviations impose additional mental overhead when reading code:
63
-
- You have to translate them back to the 'real' word in your head
64
-
- You have to disambiguate them, does `init` mean `initial` or `initialize` (`List` has both!)
65
-
66
-
If it's a super common abbreviation, it needs to be justified and explained in the documentation or in [Conventions](./conventions.md).
67
-
68
-
### Don't be cute
69
-
70
-
A name that doesn't help you understand what a function does isn't a very good name.
71
-
72
-
Needing to understand the function to understand the name is the opposite of how things should work, [naming things backwards](https://stackoverflow.com/questions/7674277/in-functionaljava-list-what-does-snoc-mean) is [for vampires](https://en.wikipedia.org/wiki/Count_Alucard_(character)).
73
-
74
-
75
-
### Prefer long names for functions that do something ill-advised or dangerous
76
-
77
-
You want to give the reader the opportunity to realise something is up.
78
-
79
-
A good way to do this is by including `Unsafe` or `Dangerously` in the name.
80
-
81
-
### Try to use names that Javascripters / OCamlers already know
82
-
83
-
If one ecosystem already has a name for something, that's going to be the one to
84
-
go for unless there is a good reason not to.
85
-
86
-
### Module names should not be repeated in function names
87
-
88
-
A function called `State.runState` is not only redundant but encourages `open`ing modules which does not scale well.
89
-
90
-
In files with many unqualified dependencies it is really hard to figure out where functions are coming from.
91
-
92
-
This can make code difficult to understand, especially if custom infix operators are used as well.
93
-
94
-
## Documentation
95
-
96
-
### Avoid 'simple', 'easy' and 'just'
97
-
98
-
They don't help anyone understand how anything works, but they can make someone who is struggling with a new concept or module feel inadequate.
99
-
100
-
### Try not to assume any background knowledge
101
-
102
-
Everyone has gaps in their knowledge, try to remove roadblocks. External links are really useful here.
103
-
104
-
### Avoid this style of documentation
105
-
106
-
> `lfindi ?pos t ~f` returns the smallest `i >= pos` such that `f i t.[i]`, if there is such an `i`. By default, `pos = 0`.
107
-
108
-
It's incredibly dense, the names are short to the point of basically being symbols and it is self referential.
109
-
110
-
Either a longer explanation using real words or an example using real data would have been better.
0 commit comments