Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

core-annotations

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

core-annotations

Flexible annotation parser for Node

  • 1.0.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

core-annotations Build Status

===============

Flexible annotation parser for Node

Install

$ npm install --save core-annotations

Usage

Checkout sample module at https://github.com/henrytao-me/dagger-compiler/tree/master/sample

Add core-annotations to your project

require('core-annotations')
...

Define Annotation

Custom Annotation should be extended from Annotation class.

class Component extends Annotation {

	compile() {
 		/* do anything you want to intercept (class | method | field) using below methods
 		 * this.getClass() 
 		 * this.getTarget()
 		 * this.getType()
 		 * this.getValues()
 		 * this.isClass()
 		 * this.isField()
 		 * this.isMethod()
 		 */
	}
}

module.exports = Component

Register Annotation

Annotation.register(require('./annotations/componentAnnotation'))

Using Annotation

Annotation can be used in class | method | field.

@Module
class AppModule {

}

@Module
class ServiceModule {

  @Singleton
  @Provides('configService')
  provideConfigService() {
    return new ConfigService(...arguments)
  }

  @Provides('databaseService')
  provideDatabaseService(configService) {
    return new DatabaseService(...arguments)
  }
}

@Component(modules = [AppModule, ServiceModule])
class AppComponent {

}

class MainController {

  @Inject configService

  @Inject databaseService
}

API

Annotation.register(clzAnnotation)

clzAnnotation

Type: ? extends Annotation

Annotation.setDebuggable(debuggable)

debuggable

Type: boolean Default: true

Annotation.setExcludeDirs(excludedDirs)

excludedDirs

Type: array Default: []

Annotation.setLogDir(logDir)

logDir

Type: string Default: ./.annotation

Contributing

Any contributions are welcome!
Please check the CONTRIBUTING guideline before submitting a new issue. Wanna send PR? Click HERE

License

Copyright 2017 "Henry Tao <hi@henrytao.me>"

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Keywords

FAQs

Package last updated on 13 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc