Ecosyste.ms: Packages

An open API service providing package, version and dependency metadata of many open source software ecosystems and registries.

Top 9.0% on proxy.golang.org
Top 4.7% dependent repos on proxy.golang.org

proxy.golang.org : github.com/metakeule/scaffold

Package scaffold provides file and directory generation based on templates. A template must be UTF8 without byte order marker and have \n (linefeed) as line terminator. It has a head and a body, separated by an empty line: The head might contain anything but empty lines, but it is recommended to put some annotated json string as example for the usage into it. Also authorship of the template and contact infos can be put there. The syntax of the body is a superset of the Go text/template package (http://golang.org/pkg/text/template). The available functions inside the body are extended by the functions defined in the FuncMap variable. Additionally to the functionality provide via the text/template package there are contexts. The template body can have folder and file contexts. A context is started by a line with the prefix ">>>" and ends by a line with the prefix "<<<". Each context has a name that follows after ">>>" or "<<<" until the end of the line. For example the context ">>>a" is ended by "<<<a" and the name of the context would be "a". If the name of the context ends with a slash (/), the context is a folder context otherwise it is a file context. The name of a file context defines the name of the file into which the content of the context will be saved. The folder of the file is defined by the surrounding folder contexts. The name of a folder context defines the name of the folder inside which the inner folders and files (as defined by the inner contexts) are saved. The outermost folder context is the baseDir parameter of the Run function (defaults to the current working directory in the CLI tool). The following would create the file "fileZ.txt" inside the folder "[baseDir]/folder1/folderA". Any missing directories a created on the fly. The placeholders inside the body are organized as a json object / map. When the Run function is called, the json objects is mixed to the template and after that the folders and files are created as defined in the result. That makes it possible to use placeholders as parts of folder or file names. Curly braces and dollar chars are part of syntax of the go template engine and there is no syntax to replace them from inside the template. However, the scaffold package has included some helper functions that return them. will result in the string "{{$}}". Most of the time this package will be used via the scaffold command sub package. It can be installed via Run to see the available options. For a complete example have a look at the example directory. The make.sh file contains the needed CLI command.

Registry - Source - Documentation - JSON
purl: pkg:golang/github.com/metakeule/scaffold
Keywords: directory-tree, golang, scaffold, template
License: MIT
Latest release: almost 2 years ago
First release: over 9 years ago
Namespace: github.com/metakeule
Dependent repositories: 1
Stars: 9 on GitHub
Forks: 2 on GitHub
See more repository details: repos.ecosyste.ms
Last synced: 30 days ago

    Loading...
    Readme
    Loading...