-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtechio.yml
More file actions
25 lines (23 loc) · 988 Bytes
/
techio.yml
File metadata and controls
25 lines (23 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
title : Practical introduction to Functional Programming with JS
# Table of contents
plan:
- title: Pure Functions # Set the page title
statement: markdowns/pure.md # Set the file path to the page content
- title: Higher Order Functions
statement: markdowns/higher.md
- title: Currying
statement: markdowns/currying.md
- title: Recursion
statement: markdowns/recursion.md
- title: Functors and Monads
statement: markdowns/functors.md
- title: Conclusion
statement: markdowns/conclusion.md
# Settings for your programming projects and the associated Docker images
projects:
nodejs:
root: "/nodejs-project"
# Set the docker image. This image runs mocha tests using this syntax:
# @[Code Editor Title]({"stubs": ["EditorFile1.js", "EditorFile2.js", ...], "command": "node_modules/mocha/bin/mocha TestFile.js --reporter list"})
# More details here: https://github.com/TechDotIO/node-npm-runner
runner: techio/node-npm-runner:latest