Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/contentful/boilerplate-javascript
Boilerplate project for getting started using javascript with Contentful
https://github.com/contentful/boilerplate-javascript
boilerplate boilerplate-javascript contentful javascript
Last synced: 14 days ago
JSON representation
Boilerplate project for getting started using javascript with Contentful
- Host: GitHub
- URL: https://github.com/contentful/boilerplate-javascript
- Owner: contentful
- License: mit
- Archived: true
- Created: 2017-01-26T09:07:12.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-10-26T13:47:23.000Z (over 1 year ago)
- Last Synced: 2024-10-02T07:42:15.037Z (4 months ago)
- Topics: boilerplate, boilerplate-javascript, contentful, javascript
- Language: JavaScript
- Homepage:
- Size: 46.9 KB
- Stars: 19
- Watchers: 32
- Forks: 10
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Contentful JavaScript boilerplate project
Boilerplate project for getting started using JavaScript with Contentful
## Prerequisites
- **Node** v4.7.2 or greater
## Start the project
### :one: Clone the project using the following command:
```bash
git clone https://github.com/contentful/boilerplate-javascript.git
```### :two: Connect it to your account:
Open the _boilerplate-javascript_ directory and update the _index.js_ file with your API credentials as follows:
```js
var SPACE_ID = ''
var ACCESS_TOKEN = ''
```### :three: Install dependencies and start it:
```shell
npm install && npm start
```