elm-script icon indicating copy to clipboard operation
elm-script copied to clipboard

Experimental command-line scripting for Elm

Results 15 elm-script issues
Sort by recently updated
recently updated
newest added

```elm mapBoth : (Result e a -> Result e1 a1) -> Script e a -> Script e1 a1 mapBoth map = Script.attempt >> Script.thenWith (\result -> case map result of...

- [ ] `NetworkConnection.sendAll : List (Request a) -> Script Error (List a)` - [ ] `File.readAll : List (File (Read p)) -> Script Error (List String)` - [ ]...

enhancement

Have `InputStream` and `OutputStream` types that allow streaming I/O on files, standard in, standard out etc. Allow converting `File` values into corresponding streams: ```elm File.toInputStream : File (Read p) ->...

enhancement

- Should `Directory.delete` delete recursively by default, or fail on non-empty directories? - How should copy/move work if the destination is not empty?

enhancement

Something like ```elm module Script.WebSocket type Connection -- Connection got closed somehow, etc. type Error -- Connect to a URL (and keep the connection alive) connect : String -> NetworkConnection...

enhancement