Gathering detailed insights and metrics for snapdragon-location
Gathering detailed insights and metrics for snapdragon-location
npm install snapdragon-location
Typescript
Module System
Min. Node Version
Node Version
NPM Version
70
Supply Chain
99.3
Quality
75.2
Maintenance
100
Vulnerability
100
License
JavaScript (100%)
Love this project? Help keep it running — sponsor us today! 🚀
Total Downloads
1,056
Last Day
1
Last Week
2
Last Month
20
Last Year
94
MIT License
2 Stars
11 Commits
2 Forks
3 Watchers
1 Branches
3 Contributors
Updated on Dec 12, 2018
Minified
Minified + Gzipped
Latest Version
1.0.2
Package Id
snapdragon-location@1.0.2
Size
5.89 kB
NPM Version
5.6.0
Node Version
9.1.0
Cumulative downloads
Total Downloads
Last Day
0%
1
Compared to previous day
Last Week
-50%
2
Compared to previous week
Last Month
566.7%
20
Compared to previous month
Last Year
-13%
94
Compared to previous year
6
Adds a location object to snapdragon token or AST node.
Please consider following this project's author, Jon Schlinkert, and consider starring the project to show your :heart: and support.
Install with npm:
1$ npm install --save snapdragon-location
Adds a .loc
object to tokens that looks something like this:
1{ 2 source: 'string', 3 start: { index: 0, column: 1, line: 1 }, 4 end: { index: 3, column: 4, line: 1 }, 5 range: [0, 3] // getter 6}
When used as snapdragon-lexer plugin, this adds a .location()
method to the instance and patches the lexer.lex()
and lexer.handle()
methods to automatically add location objects to tokens.
There is a more detailed example below.
Heads up!
If you prefer .position
over .loc
, use snapdragon-position instead.
The main export is a function that can be used as a plugin with snapdragon-lexer, or called directly with an instance of snapdragon-lexer.
Sets the start
location and returns a function for setting the end
location.
Params
name
{String|Object}: (optional) Snapdragon Lexer or Tokenizer instance, or the name to use for the location property on the token. Default is toc
.target
{Object}: Snapdragon Lexer or Tokenizer instancereturns
{Function}: Returns a function that takes a token
as its only argumentExample
1const location = require('snapdragon-location'); 2const Lexer = require('snapdragon-lexer'); 3const lexer = new Lexer('foo/bar'); 4 5lexer.capture('slash', /^\//); 6lexer.capture('text', /^\w+/); 7 8const loc = location(lexer); 9const token = loc(lexer.advance()); 10console.log(token);
Use as a plugin to add a .location
method to your snapdragon-lexer or [snapdragon-tokenizer][] instance to automatically add a location object to tokens when the .lex()
or .handle()
methods are used.
Example
1const Lexer = require('snapdragon-lexer'); 2const location = require('snapdragon-location'); 3const lexer = new Lexer(); 4lexer.use(location());
Get the current source position, with index
, column
and line
. Used by .location() to create the "start" and "end" positions.
returns
{Object}: Returns an object with the current source position.Example
1const Lexer = require('snapdragon-lexer'); 2const lexer = new Lexer(); 3console.log(lexer.position()); 4//=> Position { index: 0, column: 0, line: 1 };
Returns a function for getting the current location.
returns
{Function}: Returns a function that takes a token
as its only argument, and patches a .loc
property onto the token.Example
1const Lexer = require('snapdragon-lexer'); 2const lexer = new Lexer('foo/bar'); 3lexer.use(location()); 4 5lexer.set('text', function(tok) { 6 // get start location before advancing lexer 7 const loc = this.location(); 8 const match = this.match(/^\w+/); 9 if (match) { 10 // get end location after advancing lexer (with .match) 11 return loc(this.token(match)); 12 } 13});
Params
start
{Object}: (required) Starting positionend
{Object}: (required) Ending positiontarget
{Object}: (optional) Snapdragon Lexer or Tokenizer instancereturns
{Object}Example
1const Lexer = require('snapdragon-lexer'); 2const Position = require('snapdragon-location').Position; 3const lexer = new Lexer('foo/bar'); 4lexer.capture('text', /^\w+/); 5lexer.advance(); 6console.log(new Position(lexer)); 7//=> Position { index: 3, column: 4, line: 1 }
Params
start
{Object}: (required) Starting positionend
{Object}: (required) Ending positiontarget
{Object}: (optional) Snapdragon Lexer or Tokenizer instancereturns
{Object}Example
1const Lexer = require('snapdragon-lexer'); 2const location = require('snapdragon-position'); 3const lexer = new Lexer('foo/bar') 4 .capture('slash', /^\//) 5 .capture('text', /^\w+/); 6 7const start = new location.Position(lexer); 8lexer.advance(); 9const end = new location.Position(lexer); 10console.log(new location.Location(start, end, lexer)); 11// Location { 12// source: undefined, 13// start: Position { index: 0, column: 1, line: 1 }, 14// end: Position { index: 3, column: 4, line: 1 } }
When used as a plugin, this adds a .position()
method to a snapdragon-lexer instance, for adding position information to tokens.
Example
1const location = require('snapdragon-location'); 2const Lexer = require('snapdragon-lexer'); 3const lexer = new Lexer('foo/bar'); 4lexer.use(location()); 5 6lexer.capture('slash', /^\//); 7lexer.capture('text', /^\w+/); 8 9var token = lexer.advance(); 10console.log(token);
Adds a .loc
object to the token, like this:
1Token { 2 type: 'text', 3 value: 'foo', 4 match: [ 'foo', index: 0, input: 'foo/*' ], 5 loc: { 6 start: { index: 0, column: 1, line: 1 }, 7 end: { index: 3, column: 4, line: 1 }, 8 range: [0, 3] // getter 9 } 10}
See the Token documentation for more details about the Token
object.
1interface Token { 2 type: string; 3 value: string; 4 match: array | undefined; 5 loc: Location; 6}
The token.loc
property contains source string location information on the token.
1interface Location { 2 source: string | undefined; 3 start: Position; 4 end: Position; 5 range: array (getter) 6}
source
{string|undefined} - the source location provided by lexer.options.source
. Typically this is a filename, but could also be string
or any user defined value.start
{object} - start position object, which is the position of the first character of the lexed source string.end
{object} - end position object, which is the position of the last character of the lexed source string.range
{array} - getter that returns an array with the following values: [loc.start.index, loc.end.index]
Each Position
object consists of an index
number (0-based), a column
number (0-based), and a line
number (1-based):
1interface Position { 2 index: number; // >= 0 3 column: number; // >= 0, 4 line: number; // >= 1 5}
line
{string|undefined} - the source location provided by lexer.options.source
. Typically this is a filename, but could also be string
or any user defined value.column
{object} - start position object, which is the position of the first character of the lexed source string.end
{object} - end position object, which is the position of the last character of the lexed source string.1const Lexer = require('snapdragon-lexer'); 2const lexer = new Lexer('foo/*', { source: 'string' }); 3lexer.use(location()); 4lexer.capture('star', /^\*/); 5lexer.capture('slash', /^\//); 6lexer.capture('text', /^\w+/); 7 8lexer.tokenize(); 9console.log(lexer.tokens);
Results in:
1[ 2 { 3 type: 'text', 4 val: 'foo', 5 match: ['foo', index: 0, input: 'foo/*'], 6 loc: { 7 source: 'string', 8 start: { index: 0, column: 1, line: 1 }, 9 end: { index: 3, column: 4, line: 1 }, 10 range: [0, 3] 11 } 12 }, 13 { 14 type: 'slash', 15 val: '/', 16 match: ['/', index: 0, input: '/*'], 17 loc: { 18 source: 'string', 19 start: { index: 3, column: 4, line: 1 }, 20 end: { index: 4, column: 5, line: 1 }, 21 range: [3, 4] 22 } 23 }, 24 { 25 type: 'star', 26 val: '*', 27 match: ['*', index: 0, input: '*'], 28 loc: { 29 source: 'string', 30 start: { index: 4, column: 5, line: 1 }, 31 end: { index: 5, column: 6, line: 1 }, 32 range: [4, 5] 33 } 34 } 35]
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Please read the contributing guide for advice on opening issues, pull requests, and coding standards.
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
1$ npm install && npm test
(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)
To generate the readme, run the following command:
1$ npm install -g verbose/verb#dev verb-generate-readme && verb
You might also be interested in these projects:
Jon Schlinkert
Copyright © 2018, Jon Schlinkert. Released under the MIT License.
This file was generated by verb-generate-readme, v0.6.0, on January 08, 2018.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/11 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
security policy file not detected
Details
Score
Last Scanned on 2025-02-10
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