Skip to content

Commit

Permalink
spelling help
Browse files Browse the repository at this point in the history
  • Loading branch information
pelikhan committed Feb 23, 2023
1 parent 3fd8b07 commit ff94fb4
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .cspell/custom-dictionary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Custom Dictionary Words
Jacdac
21 changes: 21 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"version": "0.2",
"enabled": true,
"ignorePaths": [],
"dictionaryDefinitions": [
{
"name": "custom-dictionary",
"path": "./.cspell/custom-dictionary.txt",
"addWords": true
}
],
"dictionaries": [
"en-US",
"softwareTerms",
"typescript",
"custom-dictionary"
],
"words": [],
"ignoreWords": [],
"import": []
}
1 change: 0 additions & 1 deletion website/docs/developer/custom-services.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
sidebar_position: 20
hide_table_of_contents: true
---

# Custom Services
Expand Down
6 changes: 5 additions & 1 deletion website/docs/developer/simulation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@ hide_table_of_contents: true

# Simulation

DeviceScript supports simulation through a Node.JS project running in parralel on the developer machine.
DeviceScript supports simulation through a web dashboard and a Node.JS project running in parralel on the developer machine.
The Node.JS project uses the [Jacdac TypeScript client library](https://microsoft.github.io/jacdac-docs/clients/javascript/) and,
any other Node package (like your favorite test project).

The Node.JS simulator project is, by default, located under `/sim/` with `/sim/app.ts` as the entry point.

## Dashboard

The simulators dashboard is the most convinient way to start simulating services and testing out your code.

## Project structure

In a DeviceScript project,
Expand Down

0 comments on commit ff94fb4

Please sign in to comment.