baldr
A try to write my presentations for school in HTML5, CSS3 and Javascript using Vuejs.
This repository contains some evaluation and research code.
About the name baldr
Baldr is the name of a nordic
god. He is the of god of light.
import Vue from 'vue'
import Component from 'vue-class-component'
import { Prop } from 'vue-property-decorator'
import { mapGetters, createNamespacedHelpers } from 'vuex'
import Vue from 'vue'
import Component from 'vue-class-component'
import Vuex from 'vuex'
import { Prop } from 'vue-property-decorator'
// vue
import { CreateElement, VNode, VNodeData, VueConstructor } from 'vue'
import { Prop, Watch } from 'vue-property-decorator'
// vuex
import { mapGetters, mapActions, createNamespacedHelpers } from 'vuex'
import Vuex from 'vuex'
// vue-router
import { RouteConfig, Route, NavigationGuardNext } from 'vue-router'
import VueRouter from 'vue-router'
Installation / Building
npm install -g lerna
lerna bootstrap
Upgrading
sudo npm install -g npm-check-updates
lerna exec "ncu -u"
lerna exec "npm update"
Sort package.json
sudo npm install -g sort-package-json
lerna exec "sort-package-json"
Publishing
lerna publish
Testing
lerna run test
Coding style
lerna run lint
main.js
{
"main": "src/main.js"
}
The Baldr project follows the standardJS style guides.
Imports
Node packages
const path = require('path')
const jquery = require('jquery')
// Project packages.
const { Library, AlphabeticalSongsTree } = require('@bldr/songbook-base')
// Globals.
const config = getConfig()
Vue imports
// Vue plugins.
import shortcuts from '@bldr/shortcuts'
// Vue components.
import StartPage from './views/StartPage.vue'
Private fields
https://google.github.io/styleguide/jsguide.html#features-classes-fields
class Foo {
constructor() {
this.bar_ = computeBar()
}
}
vue
Component name
- At least two words
MyComponent.vue
(Pascal Case)name: 'MyComponent'
(Pascal Case)- Top level Vue component css class, prefix with
vc
= Vue component: Snake Case- HTML:
class="vc_my_component"
- CSS:
.vc_my_component
- HTML:
Documentation
Description in 3 places:
README.md
main.js
above@module
package.json
README.md template
[![npm](https://img.shields.io/npm/v/baldr.svg)](https://www.npmjs.com/package/baldr)
[![Build Status](https://travis-ci.org/Josef-Friedrich/baldr.svg?branch=master)](https://travis-ci.org/Josef-Friedrich/baldr)
[![GitHub repo size](https://img.shields.io/github/repo-size/Josef-Friedrich/baldr.svg)](https://github.com/Josef-Friedrich/baldr)
# @bldr/package-name
Description
Convert imports
const (.*) = require\((.*)\)
import $1 from $2