Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Message Flashing #23

Merged
merged 16 commits into from
Aug 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
dist: focal
language: node_js
node_js:
- '16.15.0'
script:
- npm run test
before_install:
- npm install -g codecov
after_success:
- npm run report:coverage
- codecov
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ Building applications with `@fabric/http` is easy.

```
mkdir myapp && cd myapp
npm install @fabric/http
npm init
npm i --save @fabric/http
```

### `app.js`
Expand All @@ -22,7 +23,7 @@ npm install @fabric/http
const SPA = require('@fabric/http/types/spa');

async function main () {
let spa = new SPA(
const spa = new SPA(
name: 'Example App',
synopsis: 'Simple demonstration of a single-page app.',
resources: {
Expand Down
Loading