bucklescript Questions
4
Solved
I’m new to reason-react. I’m trying to put a copyright symbol in a react-reason component. I've tried
<span >(ReasonReact.stringToElement("&copy;"))</span>
but this doesn’t give...
Danley asked 28/2, 2018 at 22:9
1
Solved
Let's say I have a higher-order component, something like the following trivial definition, exported from the JavaScript module ./hoc.js:
export const withStrong =
Component => props =>
&l...
Chorography asked 24/8, 2019 at 20:17
2
A period of intense googling provided me with some examples where people use both types of operators in one code, but generally they look just like two ways of doing one thing, they even have the s...
Huntley asked 2/4, 2019 at 12:16
2
Solved
The way that the "fast pipe" operator is compared to the "pipe last" in many places implies that they are drop-in replacements for each other. Want to send a value in as the last parameter to a fun...
Nysa asked 2/3, 2019 at 10:37
6
What are the tradeoffs between ReasonML (https://reasonml.github.io/) and TypeScript (https://www.typescriptlang.org/)?
Beefsteak asked 11/9, 2017 at 1:59
1
Solved
I am trying to write bindings for https://github.com/oblador/react-native-keychain/blob/master/typings/react-native-keychain.d.ts#L76
getGenericPassword returns false if an error, else an object (...
Ordonez asked 12/9, 2018 at 14:5
2
Solved
Given the following types:
type _ task =
| Success : 'a -> 'a task
| Fail : 'a -> 'a task
| Binding : (('a task -> unit) -> unit) -> 'a task
| AndThen : ('a -> 'b task) * 'a task...
Caudillo asked 29/5, 2018 at 14:30
1
I'm trying to write a command line tool in reasonML. So I inserted a shebang(#! /usr/bin/env node) at the first line, but the compiler failed to compile it. How do I add a shebang to the compiled o...
Scarcity asked 19/3, 2018 at 3:31
1
Solved
I'm learning Reasonml, and I can't find any function in the standard library to do so, neither of the Bucklescript Js modules. Is there any better option than using raw javascript?
Right now I'm a...
Barrelhouse asked 31/12, 2017 at 19:24
2
Solved
I have the following folder structure
--| button
--|--| button.re
main.re
In my bsconfig.json, using the quickstart guide found here. I have in my config the following key/value:
"sources": [
...
Psychoneurosis asked 13/9, 2017 at 1:56
1
Solved
I'm quite experienced with ReactJS and now I'm trying to learn ReasonML. But one thing that I've been struggling to understand, is how to import npm packages with React/Reason.
The instructions on...
Sandwich asked 2/9, 2017 at 10:8
1
Solved
I have some data I'll be fetching at runtime:
/* {id: 1, name: 'brad', age: 27, address: { city: 'city1', state: 'state1' } } */
let data = "{\"id\":1,\"name\":\"brad\",\"age\":27,\"address\":{\"c...
Zoilazoilla asked 30/4, 2017 at 0:38
1
© 2022 - 2024 — McMap. All rights reserved.