Gathering detailed insights and metrics for guidemaker
Gathering detailed insights and metrics for guidemaker
Gathering detailed insights and metrics for guidemaker
Gathering detailed insights and metrics for guidemaker
guidemaker-ember-template
Guidemaker template for Ember Guides websites
guidemaker-default-template
The default blueprint for ember-cli addons.
guidemaker-toc-checker
Mocha based testing system for checking guidemaker table of contents
guidemaker-link-checker
Mocha based testing system for guidemaker source files
A fully-functional, static site implementation of a documentation site and is built on EmberJS and using Empress technologies
npm install guidemaker
Typescript
Module System
Min. Node Version
Node Version
NPM Version
v4.0.4-guidemaker
Updated on Dec 17, 2024
v4.0.3-guidemaker
Updated on Jun 25, 2024
v4.0.2-guidemaker
Updated on May 03, 2024
v4.0.1-guidemaker
Updated on Mar 08, 2024
v4.0.0-guidemaker
Updated on Mar 08, 2024
v3.3.1-guidemaker
Updated on Dec 18, 2023
JavaScript (96.42%)
HTML (3.42%)
CSS (0.16%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
24 Stars
333 Commits
16 Forks
7 Watchers
9 Branches
13 Contributors
Updated on Mar 17, 2025
Latest Version
4.0.4
Package Id
guidemaker@4.0.4
Unpacked Size
58.37 kB
Size
18.67 kB
File Count
59
NPM Version
10.8.2
Node Version
18.20.5
Published on
Dec 17, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
21
50
This project is designed to be a fully-functional, static site implementation of a documentation site and is built on EmberJS with fully working out of the box SEO friendly output. It supports being hosted on AWS S3 or any other static site hosting solution.
This system is designed to have a core functionality provided by this repository/package and seperate packages that provide the themes and styling to your Documentation site.
If you are interested in writing your own theme for Guidemaker please reach out to us and we can walk you through the process. Hopefully if there is enough interest we can provide basic instructions on how to build your own theme using this system.
If you want an example of the this "in production" then check out the Ember Guides. If you use this in production let us know on Twitter and we can add a "built with guidemaker" wiki.
You do not need to be a web developer to be able to use this system. You just write markdown files and the rest of the work is performed by the EmberJS build system.
If you want to start writing your documentation right away and want to deploy your new Guidemaker documentation site on Netlify in less than a minute then you can just click this button:
This will create a new repo in your GitHub account that has everything setup and ready to go, as well as setting up Netifly to do Continuous Deployment of your new documentation site.
If you want to instead work with your documentation site locally before deploying then you can continue reading
1# if you don't have ember-cli installed already 2npm install -g ember-cli 3 4ember new super-docs 5cd super-docs 6 7ember install guidemaker guidemaker-default-template
It will ask you if you want to update the index.html file and you should say yes 👍
To build the static output directory, run the standard build process for a production Ember application:
1ember build -e production
This will generate a fully static output of your site in the dist folder.
If you want to see the system running on your local machine just run npm start
and you will be able to navigate to http://localhost:4200 to see the documentation site in action.
After you install Guidemaker using the instructions above, you will see that your config/environment.js
file will have been edited to add a guidemaker
config object. You should update this with the details relevant to your documentation.
Here is an example config with comments to explain the use of each of the attributes:
1guidemaker: { 2 // This title will be used in place of a logo if you do not provide one 3 title: 'Guidemaker docs', 4 // This logo will be used in the top left of the page - you can add it to your public folder 5 logo: '/images/logo.svg', 6 // this will be used for the copyright line in the bottom left of the page - if not provided then 7 // it will use `title` instead 8 copyright: 'My Awesome Company', 9 // show social links 10 social: { 11 // provide the slug for the github link (can be a project or an org) 12 github: 'empress/guidemaker', 13 // provide your username 14 twitter: 'real_ate', 15 // provide your invite link for your public discord 16 // discordLink: '<insert link here>' 17 }, 18 // this should be the link to your documentation source - if you provide one it will add an edit button on each page 19 // sourceRepo: 'https://github.com/authmaker/documentation', 20 21 // this allows you to override the branch that is used in the edit button (if you have provided a sourceRepo). It is up to the templates, but most of them default to master if you don't provide this setting 22 // sourceBranch: 'master' 23 24 // when true the Table of Contents will be collapsed and you will need to click each header to expand 25 // default - false 26 collapseToc: true, 27}
See the Contributing guide for details.
This project is licensed under the MIT License.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
packaging workflow detected
Details
Reason
Found 2/7 approved changesets -- score normalized to 2
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
29 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More