Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devmattrick/canvas-starter
Simple template for single page canvas projects.
https://github.com/devmattrick/canvas-starter
Last synced: 11 days ago
JSON representation
Simple template for single page canvas projects.
- Host: GitHub
- URL: https://github.com/devmattrick/canvas-starter
- Owner: devmattrick
- License: mit
- Created: 2018-12-01T07:59:53.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-07-20T10:39:45.000Z (over 2 years ago)
- Last Synced: 2024-10-15T15:07:15.093Z (23 days ago)
- Language: JavaScript
- Homepage:
- Size: 368 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# canvas-starter
This is a simple project that is meant to be a simple starting point for basic
canvas websites. I am mostly using it for my own personal projects, but it may
be useful to you if:* You only intend to have one page (index.html)
* You like TypeScript
* You want something as simple as possible
* You want to get started quickly## Usage
Clone the repository:
```sh
# Using HTTPS
git clone --depth=1 https://github.com/devmattrick/canvas-starter.git# Or using SSH
git clone --depth=1 [email protected]:devmattrick/canvas-starter.git
```Install dependencies:
```sh
# Using Yarn
yarn# Or using NPM
npm install
```Run the development server:
```sh
# Using Yarn
yarn run dev# Or using NPM
npm run dev
```Build an optimized production bundle:
```sh
# Using Yarn
yarn run build# Or using NPM
npm run build
```## Contributing
Contributions are always welcome, however please try to keep the general scope
of this project small (for example, don't include a canvas library like Phaser).
This is meant to be a simple base to build off of and as such is library/
framework/ etc. agnostic.## License
The code in this repository is available under the terms of the MIT License.
Please see [LICENSE](LICENSE) for more information.